Init
This commit is contained in:
10
app/model/Utils/Arrays.php
Normal file
10
app/model/Utils/Arrays.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Utils;
|
||||
|
||||
use Nette\Utils\Arrays as NetteArrays;
|
||||
|
||||
final class Arrays extends NetteArrays
|
||||
{
|
||||
|
||||
}
|
||||
13
app/model/Utils/DateTime.php
Normal file
13
app/model/Utils/DateTime.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Utils;
|
||||
|
||||
use Nette\Utils\DateTime as ContributteDateTime;
|
||||
|
||||
/**
|
||||
* @method DateTime modifyClone(string $modify = '')
|
||||
*/
|
||||
final class DateTime extends ContributteDateTime
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Utils/FileSystem.php
Normal file
10
app/model/Utils/FileSystem.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Utils;
|
||||
|
||||
use Contributte\Utils\FileSystem as ContributteFileSystem;
|
||||
|
||||
final class FileSystem extends ContributteFileSystem
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Utils/Html.php
Normal file
10
app/model/Utils/Html.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Utils;
|
||||
|
||||
use Nette\Utils\Html as NetteHtml;
|
||||
|
||||
final class Html extends NetteHtml
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Utils/Image.php
Normal file
10
app/model/Utils/Image.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Utils;
|
||||
|
||||
use Nette\Utils\Image as NetteImage;
|
||||
|
||||
class Image extends NetteImage
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Utils/Strings.php
Normal file
10
app/model/Utils/Strings.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Utils;
|
||||
|
||||
use Contributte\Utils\Strings as ContributteStrings;
|
||||
|
||||
final class Strings extends ContributteStrings
|
||||
{
|
||||
|
||||
}
|
||||
10
app/model/Utils/Validators.php
Normal file
10
app/model/Utils/Validators.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace App\Model\Utils;
|
||||
|
||||
use Contributte\Utils\Validators as ContributteValidators;
|
||||
|
||||
final class Validators extends ContributteValidators
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user