Basic functionality

This commit is contained in:
2022-03-12 16:25:30 +01:00
parent f3beaa64cf
commit acc21b7b24
137 changed files with 12647 additions and 5089 deletions

10
app/model/Utils/Arrays.php Executable file
View 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 Executable file
View 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 Executable file
View 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 Executable file
View 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 Executable file
View 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 Executable file
View 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 Executable file
View 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
{
}