Skip to content

Commit 0b8506c

Browse files
committed
removed Nette\SmartObject usage
1 parent f4b249a commit 0b8506c

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

src/Utils/ArrayList.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
*/
2121
class ArrayList implements \ArrayAccess, \Countable, \IteratorAggregate
2222
{
23-
use Nette\SmartObject;
24-
2523
private array $list = [];
2624

2725

src/Utils/DateTime.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
*/
1818
class DateTime extends \DateTime implements \JsonSerializable
1919
{
20-
use Nette\SmartObject;
21-
2220
/** minute in seconds */
2321
public const MINUTE = 60;
2422

src/Utils/Finder.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
*/
2525
class Finder implements \IteratorAggregate
2626
{
27-
use Nette\SmartObject;
28-
2927
/** @var array<array{string, string}> */
3028
private array $find = [];
3129

src/Utils/Html.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
namespace Nette\Utils;
1111

12-
use Nette;
1312
use Nette\HtmlStringable;
1413
use function is_array, is_float, is_object, is_string;
1514

@@ -233,8 +232,6 @@
233232
*/
234233
class Html implements \ArrayAccess, \Countable, \IteratorAggregate, HtmlStringable
235234
{
236-
use Nette\SmartObject;
237-
238235
/** @var array<string, mixed> element's attributes */
239236
public $attrs = [];
240237

0 commit comments

Comments
 (0)