From dd8845a0eb8edad7e4e81a2474a16b80a3757be7 Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Wed, 24 Jun 2026 17:33:42 +0400 Subject: [PATCH 1/9] [#532] Raise PHP and CI baseline to 8.x --- .github/workflows/php.yml | 3 +-- composer.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 09ce7d06..f508c806 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest ] - php-versions: [ '7.4', '8.0', '8.1' ] + php-versions: [ '8.0', '8.1', '8.2' ] redis-version: [ 6 ] runs-on: ${{ matrix.operating-system }} @@ -67,4 +67,3 @@ jobs: uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - diff --git a/composer.json b/composer.json index 70244c4c..a2b2c9f5 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ } ], "require": { - "php": "^7.4 || ^8.0", + "php": "^8.0", "ext-pdo": "*", "ext-curl": "*", "ext-json": "*", From 43744c42b85b432a755492ee6e2b161fb5a3f4ed Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Thu, 25 Jun 2026 11:30:29 +0400 Subject: [PATCH 2/9] [#532] Raise static analysis and Rector baseline --- phpstan.neon.dist | 6 ++-- rector.php | 2 ++ src/App/App.php | 2 +- src/Archive/Adapters/PharAdapter.php | 16 +++++------ src/Archive/Adapters/ZipAdapter.php | 4 +-- src/Archive/Archive.php | 2 +- src/Auth/Adapters/SessionAuthAdapter.php | 4 +-- src/Auth/Auth.php | 2 +- src/Auth/User.php | 2 +- src/Cache/Adapters/DatabaseAdapter.php | 2 +- src/Cache/Adapters/FileAdapter.php | 3 +- src/Cache/Adapters/MemcachedAdapter.php | 2 +- src/Cache/Adapters/RedisAdapter.php | 2 +- src/Cache/Cache.php | 2 +- src/Captcha/Captcha.php | 2 +- src/Console/Commands/OpenApiCommand.php | 2 +- src/Console/Commands/ServeCommand.php | 22 ++++++--------- src/Cron/CronManager.php | 4 +-- src/Cron/CronTask.php | 2 +- src/Cron/Helpers/cron.php | 2 +- src/Database/Adapters/Idiorm/IdiormDbal.php | 2 +- .../Adapters/Idiorm/Statements/Join.php | 22 +++++---------- .../Adapters/Idiorm/Statements/Reducer.php | 13 ++++----- src/Database/Adapters/Sleekdb/SleekDbal.php | 4 +-- .../Adapters/Sleekdb/Statements/Criteria.php | 2 +- .../Adapters/Sleekdb/Statements/Join.php | 22 +++++---------- .../Sleekdb/Statements/RelatedCriteria.php | 2 +- src/Database/Factories/TableFactory.php | 2 +- src/Database/Schemas/Table.php | 21 +++++--------- src/Di/DiContainer.php | 2 +- .../Adapters/SymmetricEncryptionAdapter.php | 9 ------ src/Encryption/Cryptor.php | 2 +- src/Environment/Server.php | 4 +-- src/Http/Traits/Request/Header.php | 2 +- src/Http/Traits/Request/RawInput.php | 8 +++--- src/Http/Traits/Response/Body.php | 2 +- src/HttpClient/HttpClient.php | 4 +-- src/Mailer/Adapters/MailgunAdapter.php | 2 +- src/Mailer/Adapters/MandrillAdapter.php | 2 +- src/Mailer/Adapters/ResendAdapter.php | 2 +- src/Mailer/Adapters/SendgridAdapter.php | 2 +- src/Mailer/Adapters/SendinblueAdapter.php | 2 +- src/Mailer/Mailer.php | 2 +- src/Migration/MigrationManager.php | 15 ++++------ src/Model/DbModel.php | 2 +- src/Model/Model.php | 4 +-- src/Model/ModelCollection.php | 2 +- src/Model/Traits/HasTimestamps.php | 2 +- src/Paginator/Paginator.php | 2 +- src/Paginator/Traits/PaginatorTrait.php | 2 +- src/Renderer/Renderer.php | 2 +- src/Router/RouteBuilder.php | 2 +- src/Session/Session.php | 2 +- .../Dropbox/DropboxFileSystemAdapter.php | 28 +++++++++---------- .../GoogleDriveFileSystemAdapter.php | 26 ++++++++--------- .../Adapters/Local/LocalFileSystemAdapter.php | 14 +++++----- src/Storage/FileSystem.php | 2 +- src/Storage/UploadedFile.php | 2 +- src/Tracer/ErrorHandler.php | 4 +-- src/Validation/Traits/General.php | 2 +- src/Validation/Traits/Lists.php | 2 +- 61 files changed, 147 insertions(+), 188 deletions(-) diff --git a/phpstan.neon.dist b/phpstan.neon.dist index 706c07c3..d0b99094 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -1,6 +1,6 @@ parameters: - phpVersion: 70400 - level: 7 + phpVersion: 80000 + level: 8 paths: - src @@ -13,4 +13,4 @@ parameters: checkUninitializedProperties: true checkDynamicProperties: false - treatPhpDocTypesAsCertain: false \ No newline at end of file + treatPhpDocTypesAsCertain: false diff --git a/rector.php b/rector.php index 9a9ffea4..e5527495 100644 --- a/rector.php +++ b/rector.php @@ -3,6 +3,7 @@ declare(strict_types=1); use Rector\TypeDeclaration\Rector\StmtsAwareInterface\DeclareStrictTypesRector; +use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector; use Rector\TypeDeclaration\Rector\ClassMethod\StrictStringParamConcatRector; use Rector\Set\ValueObject\LevelSetList; use Rector\Set\ValueObject\SetList; @@ -20,6 +21,7 @@ DeclareStrictTypesRector::class, ]) ->withSkip([ + ClassPropertyAssignToConstructorPromotionRector::class, StrictStringParamConcatRector::class => [ __DIR__ . '/src/Database/Adapters/Idiorm/Statements/Criteria.php', ], diff --git a/src/App/App.php b/src/App/App.php index aa4402cc..3bc38d3f 100644 --- a/src/App/App.php +++ b/src/App/App.php @@ -70,7 +70,7 @@ public function getAdapter(): AppInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw AppException::methodNotSupported($method, get_class($this->adapter)); + throw AppException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Archive/Adapters/PharAdapter.php b/src/Archive/Adapters/PharAdapter.php index a0a632b9..8bf88c63 100644 --- a/src/Archive/Adapters/PharAdapter.php +++ b/src/Archive/Adapters/PharAdapter.php @@ -62,7 +62,7 @@ public function removeArchive(): bool try { $this->archive = null; return Phar::unlinkArchive($this->archiveName); - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -111,7 +111,7 @@ public function addFile(string $filePath, ?string $entryName = null): bool ? $this->archive->addFile($filePath, $entryName) : $this->archive->addFile($filePath); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -127,7 +127,7 @@ public function addFromString(string $entryName, string $content): bool try { $this->archive->addFromString($entryName, $content); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -144,7 +144,7 @@ public function addMultipleFiles(array $fileNames): bool foreach ($fileNames as $fileName => $filePath) { $this->archive->addFile($filePath, $fileName); } - } catch (Exception $e) { + } catch (Exception) { return false; } @@ -173,7 +173,7 @@ public function extractTo(string $pathToExtract, $files = null): bool try { $this->archive->extractTo($pathToExtract, $files); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -189,7 +189,7 @@ public function deleteFile(string $filename): bool try { $this->archive->delete($filename); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -208,7 +208,7 @@ public function deleteMultipleFiles(array $fileNames): bool } return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -237,7 +237,7 @@ private function openArchive(): void if ($this->archive === null) { try { $this->archive = new Phar($this->archiveName); - } catch (Exception $e) { + } catch (Exception) { throw ArchiveException::cantOpen($this->archiveName); } } diff --git a/src/Archive/Adapters/ZipAdapter.php b/src/Archive/Adapters/ZipAdapter.php index e07371d1..a29f7866 100644 --- a/src/Archive/Adapters/ZipAdapter.php +++ b/src/Archive/Adapters/ZipAdapter.php @@ -60,7 +60,7 @@ public function offsetExists(string $filename): bool { $this->ensureArchiveOpen(); - if (strpos($filename, '.') === false) { + if (!str_contains($filename, '.')) { $filename = rtrim($filename, '/') . '/'; } @@ -129,7 +129,7 @@ public function addMultipleFiles(array $fileNames): bool foreach ($fileNames as $entryName => $filePath) { $this->addFile($filePath, $entryName); } - } catch (Exception $e) { + } catch (Exception) { return false; } diff --git a/src/Archive/Archive.php b/src/Archive/Archive.php index c86cccc5..7c2e56f7 100644 --- a/src/Archive/Archive.php +++ b/src/Archive/Archive.php @@ -56,7 +56,7 @@ public function getAdapter(): ArchiveInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw ArchiveException::methodNotSupported($method, get_class($this->adapter)); + throw ArchiveException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Auth/Adapters/SessionAuthAdapter.php b/src/Auth/Adapters/SessionAuthAdapter.php index 24a22055..6e204178 100644 --- a/src/Auth/Adapters/SessionAuthAdapter.php +++ b/src/Auth/Adapters/SessionAuthAdapter.php @@ -66,7 +66,7 @@ public function __construct(AuthServiceInterface $authService, Mailer $mailer, H * @throws SessionException * @throws Exception */ - public function signin(string $username, string $password, bool $remember = false) + public function signin(string $username, string $password, bool $remember = false): string|bool { $user = $this->getUser($username, $password); @@ -174,7 +174,7 @@ public function verifyOtp(int $otp, string $otpToken): bool * @return User|false * @throws BaseException */ - private function checkRememberToken() + private function checkRememberToken(): false|\Quantum\Auth\User { $user = $this->authService->get( $this->keyFields[AuthKeys::REMEMBER_TOKEN], diff --git a/src/Auth/Auth.php b/src/Auth/Auth.php index d09b96bd..821c3f9b 100644 --- a/src/Auth/Auth.php +++ b/src/Auth/Auth.php @@ -50,7 +50,7 @@ public function getAdapter(): AuthenticatableInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw AuthException::methodNotSupported($method, get_class($this->adapter)); + throw AuthException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Auth/User.php b/src/Auth/User.php index 41983f33..ab419b2b 100644 --- a/src/Auth/User.php +++ b/src/Auth/User.php @@ -102,7 +102,7 @@ public function hasField(string $field): bool * Gets the user property * @return string|null */ - public function __get(string $property) + public function __get(string $property): mixed { return $this->getFieldValue($property); } diff --git a/src/Cache/Adapters/DatabaseAdapter.php b/src/Cache/Adapters/DatabaseAdapter.php index 4957b964..babc87fd 100644 --- a/src/Cache/Adapters/DatabaseAdapter.php +++ b/src/Cache/Adapters/DatabaseAdapter.php @@ -61,7 +61,7 @@ public function get($key, $default = null) try { return unserialize($cacheItem->prop('value')); - } catch (Exception $e) { + } catch (Exception) { $this->delete($key); return $default; } diff --git a/src/Cache/Adapters/FileAdapter.php b/src/Cache/Adapters/FileAdapter.php index b8677a9d..0dff661d 100644 --- a/src/Cache/Adapters/FileAdapter.php +++ b/src/Cache/Adapters/FileAdapter.php @@ -26,6 +26,7 @@ use Quantum\Storage\FileSystem; use InvalidArgumentException; use ReflectionException; +use Exception; /** * Class FileAdapter @@ -71,7 +72,7 @@ public function get($key, $default = null) try { return unserialize($cacheItem); - } catch (\Exception $e) { + } catch (Exception) { $this->delete($key); return $default; } diff --git a/src/Cache/Adapters/MemcachedAdapter.php b/src/Cache/Adapters/MemcachedAdapter.php index 3be9dc57..2d036e26 100644 --- a/src/Cache/Adapters/MemcachedAdapter.php +++ b/src/Cache/Adapters/MemcachedAdapter.php @@ -62,7 +62,7 @@ public function get($key, $default = null) try { return unserialize($cacheItem); - } catch (Exception $e) { + } catch (Exception) { $this->delete($key); return $default; } diff --git a/src/Cache/Adapters/RedisAdapter.php b/src/Cache/Adapters/RedisAdapter.php index 818f8761..992aa75c 100644 --- a/src/Cache/Adapters/RedisAdapter.php +++ b/src/Cache/Adapters/RedisAdapter.php @@ -57,7 +57,7 @@ public function get($key, $default = null) try { return unserialize($cacheItem); - } catch (Exception $e) { + } catch (Exception) { $this->delete($key); return $default; } diff --git a/src/Cache/Cache.php b/src/Cache/Cache.php index f28157e3..a05e908c 100644 --- a/src/Cache/Cache.php +++ b/src/Cache/Cache.php @@ -60,7 +60,7 @@ public function getAdapter(): CacheInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw CacheException::methodNotSupported($method, get_class($this->adapter)); + throw CacheException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Captcha/Captcha.php b/src/Captcha/Captcha.php index 38401a10..71d4f0e0 100644 --- a/src/Captcha/Captcha.php +++ b/src/Captcha/Captcha.php @@ -52,7 +52,7 @@ public function getAdapter(): CaptchaInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw CaptchaException::methodNotSupported($method, get_class($this->adapter)); + throw CaptchaException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Console/Commands/OpenApiCommand.php b/src/Console/Commands/OpenApiCommand.php index 0f1f155f..38346f81 100644 --- a/src/Console/Commands/OpenApiCommand.php +++ b/src/Console/Commands/OpenApiCommand.php @@ -31,7 +31,7 @@ use Quantum\Di\Di; /** - * Class OpenApiUiAssetsCommand + * Class OpenApiCommand * @package Quantum\Console */ class OpenApiCommand extends CliCommand diff --git a/src/Console/Commands/ServeCommand.php b/src/Console/Commands/ServeCommand.php index 2c374a6c..e7a094b6 100644 --- a/src/Console/Commands/ServeCommand.php +++ b/src/Console/Commands/ServeCommand.php @@ -121,7 +121,7 @@ protected function startServerOnAvailablePort(string $host, int $startPort): arr 'port' => $port, 'url' => $url, ]; - } catch (Throwable $e) { + } catch (Throwable) { $this->cleanupProcess($process); } } @@ -214,7 +214,7 @@ protected function waitUntilServerIsReady(string $host, int $port, $process): vo while (true) { $status = proc_get_status($process); - if ($status === false || !$status['running']) { + if (!$status['running']) { throw new RuntimeException('PHP server process died unexpectedly.'); } @@ -238,7 +238,7 @@ protected function waitUntilServerIsReady(string $host, int $port, $process): vo */ protected function waitForProcess($process): void { - while (($status = proc_get_status($process)) !== false && $status['running']) { + while (($status = proc_get_status($process))['running']) { usleep(200_000); } @@ -281,16 +281,12 @@ protected function openBrowser(string $url): void */ protected function browserCommand(string $url): ?array { - switch (PHP_OS_FAMILY) { - case self::PLATFORM_WINDOWS: - return ['explorer.exe', $url]; - case self::PLATFORM_LINUX: - return ['xdg-open', $url]; - case self::PLATFORM_MAC: - return ['open', $url]; - default: - return null; - } + return match (PHP_OS_FAMILY) { + self::PLATFORM_WINDOWS => ['explorer.exe', $url], + self::PLATFORM_LINUX => ['xdg-open', $url], + self::PLATFORM_MAC => ['open', $url], + default => null, + }; } /** diff --git a/src/Cron/CronManager.php b/src/Cron/CronManager.php index c6c9495a..d6ccf696 100644 --- a/src/Cron/CronManager.php +++ b/src/Cron/CronManager.php @@ -187,7 +187,7 @@ private function runTask(CronTaskInterface $task, bool $force = false): void } catch (Throwable $e) { $this->stats['failed']++; $this->log('error', "Task \"{$task->getName()}\" failed: " . $e->getMessage(), [ - 'exception' => get_class($e), + 'exception' => $e::class, 'file' => $e->getFile(), 'line' => $e->getLine(), ]); @@ -233,7 +233,7 @@ private function log(string $level, string $message, array $context = []): void try { $logger = LoggerFactory::get(LoggerType::SINGLE); $logger->log($level, '[CRON] ' . $message, $context); - } catch (Throwable $exception) { + } catch (Throwable) { error_log(sprintf('[CRON] [%s] %s', strtoupper($level), $message)); } } diff --git a/src/Cron/CronTask.php b/src/Cron/CronTask.php index 198a7b9a..f4abbe38 100644 --- a/src/Cron/CronTask.php +++ b/src/Cron/CronTask.php @@ -54,7 +54,7 @@ public function __construct(string $name, string $expression, callable $callback try { $this->cronExpression = new CronExpression($expression); - } catch (Exception $e) { + } catch (Exception) { throw CronException::invalidExpression($expression); } } diff --git a/src/Cron/Helpers/cron.php b/src/Cron/Helpers/cron.php index d4a0552f..df3f6040 100644 --- a/src/Cron/Helpers/cron.php +++ b/src/Cron/Helpers/cron.php @@ -35,7 +35,7 @@ function cron_config(string $key, $default = null) if (!config()->has('cron')) { config()->import(new Setup('config', 'cron')); } - } catch (Throwable $exception) { + } catch (Throwable) { // Ignore missing cron config file and rely on defaults } diff --git a/src/Database/Adapters/Idiorm/IdiormDbal.php b/src/Database/Adapters/Idiorm/IdiormDbal.php index e60a1681..4a17a1eb 100644 --- a/src/Database/Adapters/Idiorm/IdiormDbal.php +++ b/src/Database/Adapters/Idiorm/IdiormDbal.php @@ -243,7 +243,7 @@ public function truncate(): bool try { $this->getOrmModel()->raw_execute("DELETE FROM {$this->table}"); return true; - } catch (\Exception $e) { + } catch (\Exception) { return false; } } diff --git a/src/Database/Adapters/Idiorm/Statements/Join.php b/src/Database/Adapters/Idiorm/Statements/Join.php index 8f001b5e..7dced6ff 100644 --- a/src/Database/Adapters/Idiorm/Statements/Join.php +++ b/src/Database/Adapters/Idiorm/Statements/Join.php @@ -83,22 +83,14 @@ public function joinTo(DbModel $relatedModel, bool $switch = true): DbalInterfac { $relation = $this->getValidatedRelation($relatedModel); - switch ($relation['type']) { - case Relation::HAS_ONE: - case Relation::HAS_MANY: - $this->applyHasRelation($relatedModel, $relation); - break; - - case Relation::BELONGS_TO: - $this->applyBelongsTo($relatedModel, $relation); - break; - - default: - throw ModelException::unsupportedRelationType($relation['type']); - } + match ($relation['type']) { + Relation::HAS_ONE, Relation::HAS_MANY => $this->applyHasRelation($relatedModel, $relation), + Relation::BELONGS_TO => $this->applyBelongsTo($relatedModel, $relation), + default => throw ModelException::unsupportedRelationType($relation['type']), + }; if ($switch) { - $this->modelName = get_class($relatedModel); + $this->modelName = $relatedModel::class; $this->table = $relatedModel->table; $this->idColumn = $relatedModel->idColumn; $this->foreignKeys = $relatedModel->relations(); @@ -146,7 +138,7 @@ protected function applyBelongsTo(DbModel $relatedModel, array $relation): void private function getValidatedRelation(DbModel $modelToJoin): array { $relations = $this->getForeignKeys(); - $relatedModelName = get_class($modelToJoin); + $relatedModelName = $modelToJoin::class; if (!isset($relations[$relatedModelName])) { throw ModelException::wrongRelation($this->getModelName(), $relatedModelName); diff --git a/src/Database/Adapters/Idiorm/Statements/Reducer.php b/src/Database/Adapters/Idiorm/Statements/Reducer.php index 80a14271..2b50b737 100644 --- a/src/Database/Adapters/Idiorm/Statements/Reducer.php +++ b/src/Database/Adapters/Idiorm/Statements/Reducer.php @@ -63,14 +63,11 @@ public function groupBy(string $column): DbalInterface */ public function orderBy(string $column, string $direction): DbalInterface { - switch (strtolower($direction)) { - case 'asc': - $this->getOrmModel()->order_by_asc($column); - break; - case 'desc': - $this->getOrmModel()->order_by_desc($column); - break; - } + match (strtolower($direction)) { + 'asc' => $this->getOrmModel()->order_by_asc($column), + 'desc' => $this->getOrmModel()->order_by_desc($column), + default => $this, + }; return $this; } diff --git a/src/Database/Adapters/Sleekdb/SleekDbal.php b/src/Database/Adapters/Sleekdb/SleekDbal.php index 4a03cfdc..0450aa3b 100644 --- a/src/Database/Adapters/Sleekdb/SleekDbal.php +++ b/src/Database/Adapters/Sleekdb/SleekDbal.php @@ -192,7 +192,7 @@ public function __construct( /** * @return mixed */ - public function __get(string $key) + public function __get(string $key): mixed { return $this->data[$key] ?? null; } @@ -295,7 +295,7 @@ public function truncate(): bool try { $this->getOrmModel()->deleteStore(); return true; - } catch (\Exception $e) { + } catch (\Exception) { return false; } } diff --git a/src/Database/Adapters/Sleekdb/Statements/Criteria.php b/src/Database/Adapters/Sleekdb/Statements/Criteria.php index cfa2cb83..a5c58605 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Criteria.php +++ b/src/Database/Adapters/Sleekdb/Statements/Criteria.php @@ -131,7 +131,7 @@ protected function sanitizeValue($value) ]; if (is_array($value)) { - return array_map(fn ($v) => is_string($v) ? strtr($v, $escapeMap) : $v, $value); + return array_map(fn ($v): mixed => is_string($v) ? strtr($v, $escapeMap) : $v, $value); } return is_string($value) ? strtr($value, $escapeMap) : $value; diff --git a/src/Database/Adapters/Sleekdb/Statements/Join.php b/src/Database/Adapters/Sleekdb/Statements/Join.php index 5772eee4..4d10829b 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Join.php +++ b/src/Database/Adapters/Sleekdb/Statements/Join.php @@ -86,7 +86,7 @@ private function applyJoin( $sleekModel = new self( $modelToJoin->table, - get_class($modelToJoin), + $modelToJoin::class, $modelToJoin->idColumn, $modelToJoin->relations() ); @@ -135,19 +135,11 @@ private function applyJoinTo(QueryBuilder $queryBuilder, DbModel $relatedModel, { $relation = $this->getValidatedRelation($currentModel, $relatedModel); - switch ($relation['type']) { - case Relation::HAS_ONE: - case Relation::HAS_MANY: - $this->applyHasRelation($queryBuilder, $currentItem, $relation); - break; - - case Relation::BELONGS_TO: - $this->applyBelongsTo($queryBuilder, $currentItem, $relation, $currentModel); - break; - - default: - throw ModelException::unsupportedRelationType($relation['type']); - } + match ($relation['type']) { + Relation::HAS_ONE, Relation::HAS_MANY => $this->applyHasRelation($queryBuilder, $currentItem, $relation), + Relation::BELONGS_TO => $this->applyBelongsTo($queryBuilder, $currentItem, $relation, $currentModel), + default => throw ModelException::unsupportedRelationType($relation['type']), + }; } /** @@ -190,7 +182,7 @@ private function applyBelongsTo(QueryBuilder $queryBuilder, array $currentItem, private function getValidatedRelation(SleekDbal $currentModel, DbModel $relatedModel): array { $relations = $currentModel->getForeignKeys(); - $relatedModelName = get_class($relatedModel); + $relatedModelName = $relatedModel::class; if (!isset($relations[$relatedModelName])) { throw ModelException::wrongRelation($currentModel->getModelName(), $relatedModelName); diff --git a/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php b/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php index 8e92ce81..98703450 100644 --- a/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php +++ b/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php @@ -303,7 +303,7 @@ protected function selectReferencesRoot(array $selected, string $root): bool continue; } - if ($column === $root || strpos($column, $root . '.') === 0) { + if ($column === $root || str_starts_with($column, $root . '.')) { return true; } } diff --git a/src/Database/Factories/TableFactory.php b/src/Database/Factories/TableFactory.php index db180dd5..f2bc3875 100644 --- a/src/Database/Factories/TableFactory.php +++ b/src/Database/Factories/TableFactory.php @@ -88,7 +88,7 @@ public function checkTableExists(string $name): bool { try { Database::query('SELECT 1 FROM ' . $name); - } catch (Exception $e) { + } catch (Exception) { return false; } diff --git a/src/Database/Schemas/Table.php b/src/Database/Schemas/Table.php index 47f2429f..578fc429 100644 --- a/src/Database/Schemas/Table.php +++ b/src/Database/Schemas/Table.php @@ -226,20 +226,13 @@ public function getSql(): string { $sql = ''; - switch ($this->action) { - case self::CREATE: - $sql = $this->createTableSql(); - break; - case self::ALTER: - $sql = $this->alterTableSql(); - break; - case self::RENAME: - $sql = $this->renameTableSql(); - break; - case self::DROP: - $sql = $this->dropTableSql(); - break; - } + $sql = match ($this->action) { + self::CREATE => $this->createTableSql(), + self::ALTER => $this->alterTableSql(), + self::RENAME => $this->renameTableSql(), + self::DROP => $this->dropTableSql(), + default => $sql, + }; return $sql; } diff --git a/src/Di/DiContainer.php b/src/Di/DiContainer.php index 81092d66..ce87f14d 100644 --- a/src/Di/DiContainer.php +++ b/src/Di/DiContainer.php @@ -112,7 +112,7 @@ public function set(string $abstract, object $instance, bool $override = true): } if (!$this->registry->isRegistered($abstract)) { - $this->registry->register(get_class($instance), $abstract); + $this->registry->register($instance::class, $abstract); } $this->container[$abstract] = $instance; diff --git a/src/Encryption/Adapters/SymmetricEncryptionAdapter.php b/src/Encryption/Adapters/SymmetricEncryptionAdapter.php index feffc117..57eb663f 100644 --- a/src/Encryption/Adapters/SymmetricEncryptionAdapter.php +++ b/src/Encryption/Adapters/SymmetricEncryptionAdapter.php @@ -96,22 +96,13 @@ public function decrypt(string $encrypted): string /** * Generates initialization vector - * @throws CryptorException */ private function generateIV(): string { $length = openssl_cipher_iv_length(self::CIPHER_METHOD); - if ($length === false) { - throw CryptorException::invalidCipher(); - } - $bytes = openssl_random_pseudo_bytes($length); - if ($bytes === false) { - throw CryptorException::invalidCipher(); - } - return $bytes; } } diff --git a/src/Encryption/Cryptor.php b/src/Encryption/Cryptor.php index 6291bebb..de72055b 100644 --- a/src/Encryption/Cryptor.php +++ b/src/Encryption/Cryptor.php @@ -54,7 +54,7 @@ public function isAsymmetric(): bool public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw CryptorException::methodNotSupported($method, get_class($this->adapter)); + throw CryptorException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Environment/Server.php b/src/Environment/Server.php index 119694f2..80fccbe3 100644 --- a/src/Environment/Server.php +++ b/src/Environment/Server.php @@ -114,7 +114,7 @@ public function contentType(bool $exact = false): ?string { $contentType = $this->get('CONTENT_TYPE'); - if ($exact && $contentType && strpos($contentType, ';') !== false) { + if ($exact && $contentType && str_contains($contentType, ';')) { return trim(explode(';', $contentType, 2)[0]); } @@ -150,7 +150,7 @@ public function getAllHeaders(): array } return array_reduce(array_keys($data), function (array $headers, $key) use ($data): array { - if (strpos($key, 'HTTP_') === 0) { + if (str_starts_with($key, 'HTTP_')) { $formattedKey = strtolower(str_replace('_', '-', substr($key, 5))); $headers[$formattedKey] = $data[$key]; } diff --git a/src/Http/Traits/Request/Header.php b/src/Http/Traits/Request/Header.php index 48d796f4..bef430b1 100644 --- a/src/Http/Traits/Request/Header.php +++ b/src/Http/Traits/Request/Header.php @@ -117,7 +117,7 @@ public function getBasicAuthCredentials(): ?array if (preg_match('/Basic\s(\S+)/', $authorization, $matches)) { $decoded = base64_decode($matches[1], true); - if ($decoded && strpos($decoded, ':') !== false) { + if ($decoded && str_contains($decoded, ':')) { [$username, $password] = explode(':', $decoded, 2); return ['username' => $username, 'password' => $password]; } diff --git a/src/Http/Traits/Request/RawInput.php b/src/Http/Traits/Request/RawInput.php index 93fb8008..a8c1b9d1 100644 --- a/src/Http/Traits/Request/RawInput.php +++ b/src/Http/Traits/Request/RawInput.php @@ -155,11 +155,11 @@ private function addFileToCollection(array &$files, string $nameParam, UploadedF */ private function detectBlockType(string $block): string { - if (strpos($block, 'filename') !== false) { + if (str_contains($block, 'filename')) { return 'file'; } - if (strpos($block, ContentType::OCTET_STREAM) !== false) { + if (str_contains($block, ContentType::OCTET_STREAM)) { return 'stream'; } @@ -294,9 +294,9 @@ private function parseHeaders(string $rawHeaders): array * Parses array-like parameter names * @return array|string */ - private function arrayParam(string $parameter) + private function arrayParam(string $parameter): array|string { - if (strpos($parameter, '[') !== false && preg_match('/^([^[]*)\[([^]]*)\](.*)$/', $parameter, $match)) { + if (str_contains($parameter, '[') && preg_match('/^([^[]*)\[([^]]*)\](.*)$/', $parameter, $match)) { return [$match[1], $match[2]]; } diff --git a/src/Http/Traits/Response/Body.php b/src/Http/Traits/Response/Body.php index 73b1b2b5..d05b81b4 100644 --- a/src/Http/Traits/Response/Body.php +++ b/src/Http/Traits/Response/Body.php @@ -231,7 +231,7 @@ private function composeXML(array $arr, SimpleXMLElement &$simpleXML): void $tag = $key; $attributes = null; - if (strpos($key, '@') !== false) { + if (str_contains($key, '@')) { [$tag, $attributes] = explode('@', $key); $attributes = json_decode($attributes); } diff --git a/src/HttpClient/HttpClient.php b/src/HttpClient/HttpClient.php index 2cc2278a..45f51b7c 100644 --- a/src/HttpClient/HttpClient.php +++ b/src/HttpClient/HttpClient.php @@ -58,7 +58,7 @@ class HttpClient /** * @var MultiCurl|Curl */ - private $client; + private Curl|MultiCurl|null $client = null; private string $method = 'GET'; @@ -308,7 +308,7 @@ public function __call(string $method, array $arguments): HttpClient } if (!method_exists($this->client, $method)) { - throw HttpClientException::methodNotSupported($method, get_class($this->client)); + throw HttpClientException::methodNotSupported($method, $this->client::class); } $this->interceptCall($method, $arguments); diff --git a/src/Mailer/Adapters/MailgunAdapter.php b/src/Mailer/Adapters/MailgunAdapter.php index f875f2c6..1ac8c676 100644 --- a/src/Mailer/Adapters/MailgunAdapter.php +++ b/src/Mailer/Adapters/MailgunAdapter.php @@ -97,7 +97,7 @@ protected function sendEmail(): bool ->start(); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } diff --git a/src/Mailer/Adapters/MandrillAdapter.php b/src/Mailer/Adapters/MandrillAdapter.php index 9a376c85..f29a7ad5 100644 --- a/src/Mailer/Adapters/MandrillAdapter.php +++ b/src/Mailer/Adapters/MandrillAdapter.php @@ -93,7 +93,7 @@ protected function sendEmail(): bool ->start(); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } diff --git a/src/Mailer/Adapters/ResendAdapter.php b/src/Mailer/Adapters/ResendAdapter.php index 11605288..f0fd6b45 100644 --- a/src/Mailer/Adapters/ResendAdapter.php +++ b/src/Mailer/Adapters/ResendAdapter.php @@ -94,7 +94,7 @@ protected function sendEmail(): bool ->start(); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } diff --git a/src/Mailer/Adapters/SendgridAdapter.php b/src/Mailer/Adapters/SendgridAdapter.php index a15b743d..8e6372bb 100644 --- a/src/Mailer/Adapters/SendgridAdapter.php +++ b/src/Mailer/Adapters/SendgridAdapter.php @@ -98,7 +98,7 @@ protected function sendEmail(): bool ->start(); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } diff --git a/src/Mailer/Adapters/SendinblueAdapter.php b/src/Mailer/Adapters/SendinblueAdapter.php index 1abfbd23..4e3c0936 100644 --- a/src/Mailer/Adapters/SendinblueAdapter.php +++ b/src/Mailer/Adapters/SendinblueAdapter.php @@ -91,7 +91,7 @@ protected function sendEmail(): bool ->start(); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } diff --git a/src/Mailer/Mailer.php b/src/Mailer/Mailer.php index c050d7e7..5cb82e7d 100644 --- a/src/Mailer/Mailer.php +++ b/src/Mailer/Mailer.php @@ -57,7 +57,7 @@ public function getAdapter(): MailerInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw MailerException::methodNotSupported($method, get_class($this->adapter)); + throw MailerException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Migration/MigrationManager.php b/src/Migration/MigrationManager.php index 9c4ca923..34e37cba 100644 --- a/src/Migration/MigrationManager.php +++ b/src/Migration/MigrationManager.php @@ -119,16 +119,11 @@ public function applyMigrations(string $direction, ?int $step = null): ?int throw MigrationException::driverNotSupported($databaseDriver); } - switch ($direction) { - case self::UPGRADE: - $migrated = $this->upgrade(); - break; - case self::DOWNGRADE: - $migrated = $this->downgrade($step); - break; - default: - throw MigrationException::wrongDirection(); - } + $migrated = match ($direction) { + self::UPGRADE => $this->upgrade(), + self::DOWNGRADE => $this->downgrade($step), + default => throw MigrationException::wrongDirection(), + }; return $migrated; } diff --git a/src/Model/DbModel.php b/src/Model/DbModel.php index adeb6d71..6124dc33 100644 --- a/src/Model/DbModel.php +++ b/src/Model/DbModel.php @@ -223,7 +223,7 @@ public function __call(string $method, array $args = []) if (!method_exists($orm, $method)) { throw ModelException::methodNotSupported( $method, - get_class($orm) + $orm::class ); } diff --git a/src/Model/Model.php b/src/Model/Model.php index 842b85d3..8e460c54 100644 --- a/src/Model/Model.php +++ b/src/Model/Model.php @@ -104,7 +104,7 @@ public function isEmpty(): bool * @param string $key * @return mixed */ - public function __get(string $key) + public function __get(string $key): mixed { return $this->prop($key); } @@ -113,7 +113,7 @@ public function __get(string $key) * @param string $key * @param mixed $value */ - public function __set(string $key, $value): void + public function __set(string $key, mixed $value): void { $this->prop($key, $value); } diff --git a/src/Model/ModelCollection.php b/src/Model/ModelCollection.php index 7db12f85..3cd16d19 100644 --- a/src/Model/ModelCollection.php +++ b/src/Model/ModelCollection.php @@ -196,7 +196,7 @@ private function validateModel($model): void { if (!$model instanceof Model) { throw ModelException::notInstanceOf( - is_object($model) ? get_class($model) : gettype($model), + get_debug_type($model), Model::class ); } diff --git a/src/Model/Traits/HasTimestamps.php b/src/Model/Traits/HasTimestamps.php index 63e7ce82..b29ab81e 100644 --- a/src/Model/Traits/HasTimestamps.php +++ b/src/Model/Traits/HasTimestamps.php @@ -54,7 +54,7 @@ protected function isNewRecord(): bool * Supports: datetime|unix * @return int|string */ - protected function nowTimestampValue() + protected function nowTimestampValue(): int|string { if ($this->getTimestampType() === 'unix') { return time(); diff --git a/src/Paginator/Paginator.php b/src/Paginator/Paginator.php index 49e25570..ada05cdd 100644 --- a/src/Paginator/Paginator.php +++ b/src/Paginator/Paginator.php @@ -65,7 +65,7 @@ public function getAdapter(): PaginatorInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw PaginatorException::methodNotSupported($method, get_class($this->adapter)); + throw PaginatorException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Paginator/Traits/PaginatorTrait.php b/src/Paginator/Traits/PaginatorTrait.php index d6c0e85f..0feb592e 100644 --- a/src/Paginator/Traits/PaginatorTrait.php +++ b/src/Paginator/Traits/PaginatorTrait.php @@ -227,7 +227,7 @@ protected function getUri(bool $withBaseUrl = false): string $url = $this->baseUrl . $routeUrl; } - $delimiter = strpos($url ?? '', '?') !== false ? '&' : '?'; + $delimiter = str_contains($url ?? '', '?') ? '&' : '?'; return $url . $delimiter; } diff --git a/src/Renderer/Renderer.php b/src/Renderer/Renderer.php index 6df6dc0b..d32c1d4c 100644 --- a/src/Renderer/Renderer.php +++ b/src/Renderer/Renderer.php @@ -47,7 +47,7 @@ public function getAdapter(): TemplateRendererInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw RendererException::methodNotSupported($method, get_class($this->adapter)); + throw RendererException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Router/RouteBuilder.php b/src/Router/RouteBuilder.php index f9354b21..5b2d7201 100644 --- a/src/Router/RouteBuilder.php +++ b/src/Router/RouteBuilder.php @@ -338,7 +338,7 @@ private function addRoute( throw RouteException::incompleteControllerRoute(); } - if (strpos($handler, '\\') === false) { + if (!str_contains($handler, '\\')) { if ($this->currentModule === null) { throw RouteException::controllerWithoutModule(); } diff --git a/src/Session/Session.php b/src/Session/Session.php index 8fae5802..1519ab36 100644 --- a/src/Session/Session.php +++ b/src/Session/Session.php @@ -56,7 +56,7 @@ public function getAdapter(): SessionStorageInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw SessionException::methodNotSupported($method, get_class($this->adapter)); + throw SessionException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php b/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php index 13d6dca3..b3e918b4 100644 --- a/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php +++ b/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php @@ -40,7 +40,7 @@ public function makeDirectory(string $dirname, ?string $parentId = null): bool try { $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_CREATE_FOLDER, $this->dropboxApp->path($dirname)); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -53,7 +53,7 @@ public function removeDirectory(string $dirname): bool try { $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_DELETE_FILE, $this->dropboxApp->path($dirname)); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -61,11 +61,11 @@ public function removeDirectory(string $dirname): bool /** * @inheritDoc */ - public function get(string $filename) + public function get(string $filename): string|false { try { return (string) $this->dropboxApp->contentRequest(DropboxApp::ENDPOINT_DOWNLOAD_FILE, $this->dropboxApp->path($filename)); - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -84,7 +84,7 @@ public function put(string $filename, $content, ?string $parentId = null) return $response->size; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -111,7 +111,7 @@ public function rename(string $oldName, string $newName): bool ]); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -128,7 +128,7 @@ public function copy(string $source, string $dest): bool ]); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -149,7 +149,7 @@ public function size(string $filename) try { $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename)); return $meta['size']; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -157,12 +157,12 @@ public function size(string $filename) /** * @inheritDoc */ - public function lastModified(string $filename) + public function lastModified(string $filename): int|false { try { $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename)); return isset($meta['server_modified']) ? strtotime($meta['server_modified']) : false; - } catch (Exception $e) { + } catch (Exception) { return false; } @@ -176,7 +176,7 @@ public function remove(string $filename): bool try { $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_DELETE_FILE, $this->dropboxApp->path($filename)); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } @@ -190,7 +190,7 @@ public function isFile(string $filename): bool try { $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($filename)); return $meta['.tag'] == 'file'; - } catch (Exception $e) { + } catch (Exception) { return false; } @@ -204,7 +204,7 @@ public function isDirectory(string $dirname): bool try { $meta = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_FILE_METADATA, $this->dropboxApp->path($dirname)); return $meta['.tag'] == 'folder'; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -217,7 +217,7 @@ public function listDirectory(string $dirname) try { $response = (array) $this->dropboxApp->rpcRequest(DropboxApp::ENDPOINT_LIST_FOLDER, $this->dropboxApp->path($dirname)); return $response['entries']; - } catch (Exception $e) { + } catch (Exception) { return false; } } diff --git a/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php b/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php index be8c4806..1c7e1334 100644 --- a/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php +++ b/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php @@ -46,7 +46,7 @@ public function makeDirectory(string $dirname, ?string $parentId = null): bool $this->googleDriveApp->rpcRequest(GoogleDriveApp::FILE_METADATA_URL, $data); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -62,11 +62,11 @@ public function removeDirectory(string $dirname): bool /** * @inheritDoc */ - public function get(string $filename) + public function get(string $filename): string|false { try { return (string) $this->googleDriveApp->getFileInfo($filename, true); - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -104,7 +104,7 @@ public function put(string $filename, $content, ?string $parentId = null) 'application/octet-stream' ); - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -131,7 +131,7 @@ public function rename(string $oldName, string $newName): bool $this->googleDriveApp->rpcRequest(GoogleDriveApp::FILE_METADATA_URL . '/' . $oldName, $data, 'PATCH'); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -148,7 +148,7 @@ public function copy(string $source, string $dest = 'root'): bool $this->googleDriveApp->rpcRequest(GoogleDriveApp::FILE_METADATA_URL . '/' . $source . '/copy', $data); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -169,7 +169,7 @@ public function size(string $filename) try { $meta = (array) $this->googleDriveApp->getFileInfo($filename); return $meta['size']; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -177,12 +177,12 @@ public function size(string $filename) /** * @inheritDoc */ - public function lastModified(string $filename) + public function lastModified(string $filename): int|false { try { $meta = (array) $this->googleDriveApp->getFileInfo($filename); return empty($meta['modifiedTime']) ? false : strtotime($meta['modifiedTime']); - } catch (Exception $e) { + } catch (Exception) { return false; } @@ -196,7 +196,7 @@ public function remove(string $filename): bool try { $this->googleDriveApp->rpcRequest(GoogleDriveApp::FILE_METADATA_URL . '/' . $filename, [], 'DELETE'); return true; - } catch (Exception $e) { + } catch (Exception) { return false; } @@ -211,7 +211,7 @@ public function isFile(string $filename): bool $meta = (array) $this->googleDriveApp->getFileInfo($filename); return $meta['kind'] === GoogleDriveApp::DRIVE_FILE_KIND && $meta['mimeType'] != GoogleDriveApp::FOLDER_MIMETYPE; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -225,7 +225,7 @@ public function isDirectory(string $dirname): bool $meta = (array) $this->googleDriveApp->getFileInfo($dirname); return $meta['kind'] === GoogleDriveApp::DRIVE_FILE_KIND && $meta['mimeType'] === GoogleDriveApp::FOLDER_MIMETYPE; - } catch (Exception $e) { + } catch (Exception) { return false; } } @@ -242,7 +242,7 @@ public function listDirectory(string $dirname) ]; $response = (array) $this->googleDriveApp->rpcRequest(GoogleDriveApp::FILE_METADATA_URL . '?' . http_build_query($params), [], 'GET'); return $response['files']; - } catch (Exception $e) { + } catch (Exception) { return false; } } diff --git a/src/Storage/Adapters/Local/LocalFileSystemAdapter.php b/src/Storage/Adapters/Local/LocalFileSystemAdapter.php index 5af4dea0..4fc2a34d 100644 --- a/src/Storage/Adapters/Local/LocalFileSystemAdapter.php +++ b/src/Storage/Adapters/Local/LocalFileSystemAdapter.php @@ -48,7 +48,7 @@ public function removeDirectory(string $dirname): bool /** * @inheritDoc */ - public function get(string $filename) + public function get(string $filename): string|false { return file_get_contents($filename); } @@ -73,7 +73,7 @@ public function getJson(string $filename) /** * @inheritDoc */ - public function put(string $filename, $content, ?string $parentId = null) + public function put(string $filename, $content, ?string $parentId = null): int|false { return file_put_contents($filename, $content, LOCK_EX); } @@ -81,7 +81,7 @@ public function put(string $filename, $content, ?string $parentId = null) /** * @inheritDoc */ - public function append(string $filename, $content) + public function append(string $filename, $content): int|false { return file_put_contents($filename, $content, FILE_APPEND | LOCK_EX); } @@ -113,7 +113,7 @@ public function exists(string $filename): bool /** * @inheritDoc */ - public function size(string $filename) + public function size(string $filename): int|false { return filesize($filename); } @@ -121,7 +121,7 @@ public function size(string $filename) /** * @inheritDoc */ - public function lastModified(string $filename) + public function lastModified(string $filename): int|false { return filemtime($filename); } @@ -153,7 +153,7 @@ public function isDirectory(string $dirname): bool /** * @inheritDoc */ - public function listDirectory(string $dirname) + public function listDirectory(string $dirname): array|false { $entries = []; @@ -170,7 +170,7 @@ public function listDirectory(string $dirname) return $entries; - } catch (Throwable $e) { + } catch (Throwable) { return false; } } diff --git a/src/Storage/FileSystem.php b/src/Storage/FileSystem.php index 0f3ee8ee..6cd78578 100644 --- a/src/Storage/FileSystem.php +++ b/src/Storage/FileSystem.php @@ -68,7 +68,7 @@ public function getAdapter(): FilesystemAdapterInterface public function __call(string $method, ?array $arguments) { if (!method_exists($this->adapter, $method)) { - throw FileSystemException::methodNotSupported($method, get_class($this->adapter)); + throw FileSystemException::methodNotSupported($method, $this->adapter::class); } return $this->adapter->$method(...$arguments); diff --git a/src/Storage/UploadedFile.php b/src/Storage/UploadedFile.php index c6614840..728e9246 100644 --- a/src/Storage/UploadedFile.php +++ b/src/Storage/UploadedFile.php @@ -383,7 +383,7 @@ private function getLocalFileSystem(): LocalFilesystemAdapterInterface if (!$adapter instanceof LocalFilesystemAdapterInterface) { throw FileSystemException::notInstanceOf( - get_class($adapter), + $adapter::class, LocalFilesystemAdapterInterface::class ); } diff --git a/src/Tracer/ErrorHandler.php b/src/Tracer/ErrorHandler.php index c5fee7ef..5cee7f93 100644 --- a/src/Tracer/ErrorHandler.php +++ b/src/Tracer/ErrorHandler.php @@ -101,7 +101,7 @@ private function handleCliException(Throwable $throwable): void return; } - $output->writeln('' . get_class($throwable) . ': ' . $throwable->getMessage() . ''); + $output->writeln('' . $throwable::class . ': ' . $throwable->getMessage() . ''); $output->writeln('In ' . $throwable->getFile() . ':' . $throwable->getLine()); $output->writeln($throwable->getTraceAsString()); } @@ -121,7 +121,7 @@ private function handleWebException(Throwable $throwable): void $errorPage = $this->webExceptionRenderer->render($throwable, $errorType); response()->html($errorPage, StatusCode::INTERNAL_SERVER_ERROR); response()->send(); - } catch (Throwable $e) { + } catch (Throwable) { response()->html('Internal Server Error', StatusCode::INTERNAL_SERVER_ERROR); response()->send(); } diff --git a/src/Validation/Traits/General.php b/src/Validation/Traits/General.php index 06b321d8..1e7d9c1d 100644 --- a/src/Validation/Traits/General.php +++ b/src/Validation/Traits/General.php @@ -176,7 +176,7 @@ protected function date($value, ?string $format = null): bool */ protected function starts($value, ?string $text = null): bool { - return strpos((string) $value, (string) $text) === 0; + return str_starts_with((string) $value, (string) $text); } /** diff --git a/src/Validation/Traits/Lists.php b/src/Validation/Traits/Lists.php index e0e48c80..63d6c24c 100644 --- a/src/Validation/Traits/Lists.php +++ b/src/Validation/Traits/Lists.php @@ -30,7 +30,7 @@ protected function contains(string $value, string $haystack): bool $value = trim(strtolower($value)); $haystack = trim(strtolower($haystack)); - return strpos($haystack, $value) !== false; + return str_contains($haystack, $value); } /** From 933f4e1684e4f78ca52698ae04768b51ae62952f Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Thu, 25 Jun 2026 11:36:24 +0400 Subject: [PATCH 3/9] [#532] Remove PHP 7.4 compatibility branches --- src/Mailer/Traits/MailerTrait.php | 5 ++--- src/Renderer/Adapters/HtmlAdapter.php | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Mailer/Traits/MailerTrait.php b/src/Mailer/Traits/MailerTrait.php index 74448f18..04fed8b7 100644 --- a/src/Mailer/Traits/MailerTrait.php +++ b/src/Mailer/Traits/MailerTrait.php @@ -280,11 +280,10 @@ private function saveEmail(): bool private function createFromTemplate(): string { ob_start(); - /** @phpstan-ignore argument.type */ - ob_implicit_flush(PHP_VERSION_ID >= 80000 ? false : 0); + ob_implicit_flush(false); if (is_array($this->message)) { - extract($this->message, EXTR_OVERWRITE); + extract($this->message); } require $this->templatePath . '.php'; diff --git a/src/Renderer/Adapters/HtmlAdapter.php b/src/Renderer/Adapters/HtmlAdapter.php index 329a8bec..a7748fdf 100644 --- a/src/Renderer/Adapters/HtmlAdapter.php +++ b/src/Renderer/Adapters/HtmlAdapter.php @@ -63,8 +63,7 @@ public function render(string $view, array $params = []): string } ob_start(); - /** @phpstan-ignore argument.type */ - ob_implicit_flush(PHP_VERSION_ID >= 80000 ? false : 0); + ob_implicit_flush(false); if ($params !== []) { extract($params); From 2a523c85c8f906d6b41fd6077c2c298e8dfa0e63 Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Fri, 26 Jun 2026 18:10:12 +0400 Subject: [PATCH 4/9] [#532] Simplify standard file banner docblocks --- src/App/Adapters/AppAdapter.php | 11 ++--------- src/App/Adapters/ConsoleAppAdapter.php | 11 ++--------- src/App/Adapters/WebAppAdapter.php | 11 ++--------- src/App/App.php | 11 ++--------- src/App/AppContext.php | 11 ++--------- src/App/BootPipeline.php | 11 ++--------- src/App/Contracts/AppInterface.php | 11 ++--------- src/App/Contracts/BootStageInterface.php | 11 ++--------- src/App/Enums/AppType.php | 11 ++--------- src/App/Enums/ExceptionMessages.php | 11 ++--------- src/App/Enums/ExitCode.php | 11 ++--------- src/App/Enums/ReservedKeys.php | 11 ++--------- src/App/Exceptions/AppException.php | 11 ++--------- src/App/Exceptions/BaseException.php | 11 ++--------- src/App/Factories/AppFactory.php | 11 ++--------- src/App/Helpers/app.php | 10 ++-------- src/App/Helpers/dir.php | 10 ++-------- src/App/Helpers/misc.php | 10 ++-------- src/App/Helpers/uuid.php | 10 ++-------- src/App/Stages/InitDebuggerStage.php | 11 ++--------- src/App/Stages/InitHttpStage.php | 11 ++--------- src/App/Stages/LoadAppConfigStage.php | 11 ++--------- src/App/Stages/LoadEnvironmentStage.php | 11 ++--------- src/App/Stages/LoadHelpersStage.php | 11 ++--------- src/App/Stages/LoadModulesStage.php | 11 ++--------- src/App/Stages/SetupErrorHandlerStage.php | 11 ++--------- src/App/Traits/ConsoleAppTrait.php | 11 ++--------- src/App/Traits/WebAppTrait.php | 11 ++--------- src/Archive/Adapters/PharAdapter.php | 11 ++--------- src/Archive/Adapters/ZipAdapter.php | 11 ++--------- src/Archive/Archive.php | 11 ++--------- src/Archive/Contracts/ArchiveInterface.php | 11 ++--------- src/Archive/Enums/ArchiveType.php | 11 ++--------- src/Archive/Enums/ExceptionMessages.php | 11 ++--------- src/Archive/Exceptions/ArchiveException.php | 11 ++--------- src/Archive/Factories/ArchiveFactory.php | 11 ++--------- src/Asset/Asset.php | 11 ++--------- src/Asset/AssetManager.php | 11 ++--------- src/Asset/Enums/ExceptionMessages.php | 11 ++--------- src/Asset/Exceptions/AssetException.php | 11 ++--------- src/Asset/Helpers/asset.php | 10 ++-------- src/Auth/Adapters/JwtAuthAdapter.php | 11 ++--------- src/Auth/Adapters/SessionAuthAdapter.php | 11 ++--------- src/Auth/Auth.php | 11 ++--------- src/Auth/Contracts/AuthServiceInterface.php | 11 ++--------- src/Auth/Contracts/AuthenticatableInterface.php | 11 ++--------- src/Auth/Enums/AuthKeys.php | 11 ++--------- src/Auth/Enums/AuthType.php | 11 ++--------- src/Auth/Enums/ExceptionMessages.php | 11 ++--------- src/Auth/Exceptions/AuthException.php | 11 ++--------- src/Auth/Factories/AuthFactory.php | 11 ++--------- src/Auth/Helpers/auth.php | 10 ++-------- src/Auth/Traits/AuthTrait.php | 11 ++--------- src/Auth/User.php | 11 ++--------- src/Cache/Adapters/DatabaseAdapter.php | 11 ++--------- src/Cache/Adapters/FileAdapter.php | 11 ++--------- src/Cache/Adapters/MemcachedAdapter.php | 11 ++--------- src/Cache/Adapters/RedisAdapter.php | 11 ++--------- src/Cache/Cache.php | 11 ++--------- src/Cache/Enums/CacheType.php | 11 ++--------- src/Cache/Enums/ExceptionMessages.php | 11 ++--------- src/Cache/Exceptions/CacheException.php | 11 ++--------- src/Cache/Factories/CacheFactory.php | 11 ++--------- src/Cache/Helpers/cache.php | 10 ++-------- src/Cache/Traits/CacheTrait.php | 11 ++--------- src/Captcha/Adapters/HcaptchaAdapter.php | 11 ++--------- src/Captcha/Adapters/RecaptchaAdapter.php | 11 ++--------- src/Captcha/Captcha.php | 11 ++--------- src/Captcha/Contracts/CaptchaInterface.php | 11 ++--------- src/Captcha/Enums/CaptchaType.php | 11 ++--------- src/Captcha/Exceptions/CaptchaException.php | 11 ++--------- src/Captcha/Factories/CaptchaFactory.php | 11 ++--------- src/Captcha/Helpers/captcha.php | 10 ++-------- src/Captcha/Traits/CaptchaTrait.php | 11 ++--------- src/Config/Config.php | 11 ++--------- src/Config/Contracts/ConfigInterface.php | 11 ++--------- src/Config/Enums/ExceptionMessages.php | 11 ++--------- src/Config/Exceptions/ConfigException.php | 11 ++--------- src/Config/Helpers/config.php | 10 ++-------- src/Console/CliCommand.php | 11 ++--------- src/Console/CommandDiscovery.php | 11 ++--------- src/Console/Commands/CronRunCommand.php | 11 ++--------- src/Console/Commands/DebugBarCommand.php | 11 ++--------- src/Console/Commands/EnvCommand.php | 11 ++--------- src/Console/Commands/InstallToolkitCommand.php | 11 ++--------- src/Console/Commands/KeyGenerateCommand.php | 11 ++--------- src/Console/Commands/MigrationGenerateCommand.php | 11 ++--------- src/Console/Commands/MigrationMigrateCommand.php | 11 ++--------- src/Console/Commands/ModuleGenerateCommand.php | 11 ++--------- src/Console/Commands/OpenApiCommand.php | 11 ++--------- src/Console/Commands/ResourceCacheClearCommand.php | 11 ++--------- src/Console/Commands/RouteListCommand.php | 11 ++--------- src/Console/Commands/ServeCommand.php | 11 ++--------- src/Console/Commands/VersionCommand.php | 11 ++--------- src/Console/Contracts/CommandInterface.php | 11 ++--------- src/Cookie/Contracts/CookieStorageInterface.php | 11 ++--------- src/Cookie/Cookie.php | 11 ++--------- src/Cookie/Helpers/cookie.php | 10 ++-------- src/Cron/Contracts/CronTaskInterface.php | 11 ++--------- src/Cron/CronManager.php | 11 ++--------- src/Cron/CronTask.php | 11 ++--------- src/Cron/Enums/ExceptionMessages.php | 11 ++--------- src/Cron/Exceptions/CronException.php | 11 ++--------- src/Cron/Helpers/cron.php | 10 ++-------- src/Cron/Schedule.php | 11 ++--------- src/Csrf/Csrf.php | 11 ++--------- src/Csrf/Enums/ExceptionMessages.php | 11 ++--------- src/Csrf/Exceptions/CsrfException.php | 11 ++--------- src/Csrf/Helpers/csrf.php | 10 ++-------- src/Database/Adapters/Idiorm/IdiormDbal.php | 11 ++--------- src/Database/Adapters/Idiorm/IdiormPatch.php | 11 ++--------- src/Database/Adapters/Idiorm/Statements/Criteria.php | 11 ++--------- src/Database/Adapters/Idiorm/Statements/Join.php | 11 ++--------- src/Database/Adapters/Idiorm/Statements/Model.php | 11 ++--------- src/Database/Adapters/Idiorm/Statements/Query.php | 11 ++--------- src/Database/Adapters/Idiorm/Statements/Reducer.php | 11 ++--------- src/Database/Adapters/Idiorm/Statements/Result.php | 11 ++--------- .../Adapters/Idiorm/Statements/Transaction.php | 11 ++--------- src/Database/Adapters/Sleekdb/SleekDbal.php | 11 ++--------- src/Database/Adapters/Sleekdb/Statements/Criteria.php | 11 ++--------- src/Database/Adapters/Sleekdb/Statements/Join.php | 11 ++--------- src/Database/Adapters/Sleekdb/Statements/Model.php | 11 ++--------- src/Database/Adapters/Sleekdb/Statements/Reducer.php | 11 ++--------- .../Adapters/Sleekdb/Statements/RelatedCriteria.php | 11 ++--------- src/Database/Adapters/Sleekdb/Statements/Result.php | 11 ++--------- src/Database/Contracts/DbalInterface.php | 11 ++--------- src/Database/Contracts/RelationalInterface.php | 11 ++--------- src/Database/Database.php | 11 ++--------- src/Database/Enums/DatabaseType.php | 11 ++--------- src/Database/Enums/ExceptionMessages.php | 11 ++--------- src/Database/Enums/Key.php | 11 ++--------- src/Database/Enums/Relation.php | 11 ++--------- src/Database/Enums/Type.php | 11 ++--------- src/Database/Exceptions/DatabaseException.php | 11 ++--------- src/Database/Factories/TableFactory.php | 11 ++--------- src/Database/Helpers/db.php | 10 ++-------- src/Database/Schemas/Column.php | 11 ++--------- src/Database/Schemas/Table.php | 11 ++--------- src/Database/Traits/RelationalTrait.php | 11 ++--------- src/Database/Traits/TableTrait.php | 11 ++--------- src/Database/Traits/TransactionTrait.php | 11 ++--------- src/Debugger/Contracts/DebuggerStoreInterface.php | 11 ++--------- src/Debugger/Debugger.php | 11 ++--------- src/Debugger/DebuggerStore.php | 11 ++--------- src/Debugger/Helpers/debugger.php | 10 ++-------- src/Di/Di.php | 11 ++--------- src/Di/DiContainer.php | 11 ++--------- src/Di/DiRegistry.php | 11 ++--------- src/Di/Enums/ExceptionMessages.php | 11 ++--------- src/Di/Exceptions/DiException.php | 11 ++--------- .../Adapters/AsymmetricEncryptionAdapter.php | 11 ++--------- .../Adapters/SymmetricEncryptionAdapter.php | 11 ++--------- src/Encryption/Contracts/EncryptionInterface.php | 11 ++--------- src/Encryption/Cryptor.php | 11 ++--------- src/Encryption/Enums/CryptorType.php | 11 ++--------- src/Encryption/Enums/ExceptionMessages.php | 11 ++--------- src/Encryption/Exceptions/CryptorException.php | 11 ++--------- src/Encryption/Factories/CryptorFactory.php | 11 ++--------- src/Encryption/Helpers/encryption.php | 10 ++-------- src/Environment/Enums/Env.php | 11 ++--------- src/Environment/Enums/ExceptionMessages.php | 11 ++--------- src/Environment/Environment.php | 11 ++--------- src/Environment/Exceptions/EnvException.php | 11 ++--------- src/Environment/Helpers/env.php | 10 ++-------- src/Environment/Helpers/server.php | 10 ++-------- src/Environment/Server.php | 11 ++--------- src/Hasher/Enums/ExceptionMessages.php | 11 ++--------- src/Hasher/Exceptions/HasherException.php | 11 ++--------- src/Hasher/Hasher.php | 11 ++--------- src/Hook/Enums/ExceptionMessages.php | 11 ++--------- src/Hook/Exceptions/HookException.php | 11 ++--------- src/Hook/Helpers/hook.php | 10 ++-------- src/Hook/HookManager.php | 11 ++--------- src/Http/Enums/ContentType.php | 11 ++--------- src/Http/Enums/StatusCode.php | 11 ++--------- src/Http/Exceptions/HttpException.php | 11 ++--------- src/Http/Helpers/http.php | 10 ++-------- src/Http/Request.php | 11 ++--------- src/Http/Response.php | 11 ++--------- src/Http/Traits/Request/Body.php | 11 ++--------- src/Http/Traits/Request/File.php | 11 ++--------- src/Http/Traits/Request/Header.php | 11 ++--------- src/Http/Traits/Request/Internal.php | 11 ++--------- src/Http/Traits/Request/Params.php | 11 ++--------- src/Http/Traits/Request/Query.php | 11 ++--------- src/Http/Traits/Request/RawInput.php | 11 ++--------- src/Http/Traits/Request/Route.php | 11 ++--------- src/Http/Traits/Request/Url.php | 11 ++--------- src/Http/Traits/Response/Body.php | 11 ++--------- src/Http/Traits/Response/Header.php | 11 ++--------- src/Http/Traits/Response/Status.php | 11 ++--------- src/HttpClient/Enums/ExceptionMessages.php | 11 ++--------- src/HttpClient/Exceptions/HttpClientException.php | 11 ++--------- src/HttpClient/HttpClient.php | 11 ++--------- src/Jwt/Enums/ExceptionMessages.php | 11 ++--------- src/Jwt/Exceptions/JwtException.php | 11 ++--------- src/Jwt/JwtToken.php | 11 ++--------- src/Lang/Enums/ExceptionMessages.php | 11 ++--------- src/Lang/Exceptions/LangException.php | 11 ++--------- src/Lang/Factories/LangFactory.php | 11 ++--------- src/Lang/Helpers/lang.php | 10 ++-------- src/Lang/Lang.php | 11 ++--------- src/Lang/Translator.php | 11 ++--------- src/Loader/Exceptions/LoaderException.php | 11 ++--------- src/Loader/Loader.php | 11 ++--------- src/Loader/Setup.php | 11 ++--------- src/Logger/Adapters/DailyAdapter.php | 11 ++--------- src/Logger/Adapters/MessageAdapter.php | 11 ++--------- src/Logger/Adapters/SingleAdapter.php | 11 ++--------- src/Logger/Contracts/ReportableInterface.php | 11 ++--------- src/Logger/Enums/ExceptionMessages.php | 11 ++--------- src/Logger/Enums/LoggerType.php | 11 ++--------- src/Logger/Exceptions/LoggerException.php | 11 ++--------- src/Logger/Factories/LoggerFactory.php | 11 ++--------- src/Logger/Helpers/logger.php | 10 ++-------- src/Logger/Logger.php | 11 ++--------- src/Logger/LoggerConfig.php | 11 ++--------- src/Logger/Traits/LoggerTrait.php | 11 ++--------- src/Mailer/Adapters/MailgunAdapter.php | 11 ++--------- src/Mailer/Adapters/MandrillAdapter.php | 11 ++--------- src/Mailer/Adapters/ResendAdapter.php | 11 ++--------- src/Mailer/Adapters/SendgridAdapter.php | 11 ++--------- src/Mailer/Adapters/SendinblueAdapter.php | 11 ++--------- src/Mailer/Adapters/SmtpAdapter.php | 11 ++--------- src/Mailer/Contracts/MailerInterface.php | 11 ++--------- src/Mailer/Enums/MailerType.php | 11 ++--------- src/Mailer/Exceptions/MailerException.php | 11 ++--------- src/Mailer/Factories/MailerFactory.php | 11 ++--------- src/Mailer/Helpers/mailer.php | 10 ++-------- src/Mailer/MailTrap.php | 11 ++--------- src/Mailer/Mailer.php | 11 ++--------- src/Mailer/Traits/MailerTrait.php | 11 ++--------- src/Middleware/Enums/ExceptionMessages.php | 11 ++--------- src/Middleware/Exceptions/MiddlewareException.php | 11 ++--------- src/Middleware/Middleware.php | 11 ++--------- src/Middleware/MiddlewareManager.php | 11 ++--------- src/Migration/Enums/ExceptionMessages.php | 11 ++--------- src/Migration/Exceptions/MigrationException.php | 11 ++--------- src/Migration/Migration.php | 11 ++--------- src/Migration/MigrationManager.php | 11 ++--------- src/Migration/MigrationTable.php | 11 ++--------- src/Migration/Templates/MigrationTemplate.php | 11 ++--------- src/Model/DbModel.php | 11 ++--------- src/Model/Enums/ExceptionMessages.php | 11 ++--------- src/Model/Exceptions/ModelException.php | 11 ++--------- src/Model/Factories/ModelFactory.php | 11 ++--------- src/Model/Helpers/model.php | 10 ++-------- src/Model/Model.php | 11 ++--------- src/Model/ModelCollection.php | 11 ++--------- src/Model/Traits/HasTimestamps.php | 10 ++-------- src/Model/Traits/SoftDeletes.php | 11 ++--------- src/Module/Enums/ExceptionMessages.php | 11 ++--------- src/Module/Exceptions/ModuleException.php | 11 ++--------- src/Module/ModuleLoader.php | 11 ++--------- src/Module/ModuleManager.php | 11 ++--------- .../DefaultApi/src/Controllers/MainController.php.tpl | 11 +++-------- .../src/Controllers/OpenApi/OpenApiController.php.tpl | 11 +++-------- .../Controllers/OpenApi/OpenApiMainController.php.tpl | 11 +++-------- .../DefaultWeb/src/Controllers/MainController.php.tpl | 11 +++-------- .../DemoApi/src/Controllers/AccountController.php.tpl | 11 +++-------- .../DemoApi/src/Controllers/AuthController.php.tpl | 11 +++-------- .../DemoApi/src/Controllers/BaseController.php.tpl | 11 +++-------- .../DemoApi/src/Controllers/CommentController.php.tpl | 11 +++-------- .../OpenApi/OpenApiAccountController.php.tpl | 11 +++-------- .../Controllers/OpenApi/OpenApiAuthController.php.tpl | 11 +++-------- .../OpenApi/OpenApiCommentController.php.tpl | 11 +++-------- .../src/Controllers/OpenApi/OpenApiController.php.tpl | 11 +++-------- .../Controllers/OpenApi/OpenApiPostController.php.tpl | 11 +++-------- .../DemoApi/src/Controllers/PostController.php.tpl | 11 +++-------- .../src/Controllers/PostManagementController.php.tpl | 11 +++-------- .../Templates/DemoApi/src/DTOs/CommentDTO.php.tpl | 11 +++-------- src/Module/Templates/DemoApi/src/DTOs/PostDTO.php.tpl | 11 +++-------- src/Module/Templates/DemoApi/src/DTOs/UserDTO.php.tpl | 11 +++-------- src/Module/Templates/DemoApi/src/Enums/Role.php.tpl | 11 +++-------- .../DemoApi/src/Middlewares/Activate.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Auth.php.tpl | 11 +++-------- .../DemoApi/src/Middlewares/BaseMiddleware.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Comment.php.tpl | 11 +++-------- .../DemoApi/src/Middlewares/CommentOwner.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Editor.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Forget.php.tpl | 11 +++-------- .../DemoApi/src/Middlewares/Password.php.tpl | 11 +++-------- .../DemoApi/src/Middlewares/PostOwner.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Resend.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Reset.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Signout.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Signup.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Update.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Middlewares/Verify.php.tpl | 11 +++-------- .../Templates/DemoApi/src/Models/Comment.php.tpl | 11 +++-------- src/Module/Templates/DemoApi/src/Models/Post.php.tpl | 11 +++-------- src/Module/Templates/DemoApi/src/Models/User.php.tpl | 11 +++-------- .../DemoApi/src/Services/AuthService.php.tpl | 11 +++-------- .../DemoApi/src/Services/CommentService.php.tpl | 11 +++-------- .../DemoApi/src/Services/PostService.php.tpl | 11 +++-------- .../src/Transformers/CommentTransformer.php.tpl | 11 +++-------- .../DemoApi/src/Transformers/PostTransformer.php.tpl | 11 +++-------- .../DemoWeb/src/Controllers/AccountController.php.tpl | 11 +++-------- .../DemoWeb/src/Controllers/AuthController.php.tpl | 11 +++-------- .../DemoWeb/src/Controllers/BaseController.php.tpl | 11 +++-------- .../DemoWeb/src/Controllers/CommentController.php.tpl | 11 +++-------- .../DemoWeb/src/Controllers/PageController.php.tpl | 11 +++-------- .../DemoWeb/src/Controllers/PostController.php.tpl | 11 +++-------- .../src/Controllers/PostManagementController.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/DTOs/CommentDTO.php.tpl | 11 +++-------- src/Module/Templates/DemoWeb/src/DTOs/PostDTO.php.tpl | 11 +++-------- src/Module/Templates/DemoWeb/src/DTOs/UserDTO.php.tpl | 11 +++-------- src/Module/Templates/DemoWeb/src/Enums/Role.php.tpl | 11 +++-------- .../DemoWeb/src/Middlewares/Activate.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Auth.php.tpl | 11 +++-------- .../DemoWeb/src/Middlewares/BaseMiddleware.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Comment.php.tpl | 11 +++-------- .../DemoWeb/src/Middlewares/CommentOwner.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Editor.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Forget.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Guest.php.tpl | 11 +++-------- .../DemoWeb/src/Middlewares/Password.php.tpl | 11 +++-------- .../DemoWeb/src/Middlewares/PostOwner.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Resend.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Reset.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Signup.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Update.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Middlewares/Verify.php.tpl | 11 +++-------- .../Templates/DemoWeb/src/Models/Comment.php.tpl | 11 +++-------- src/Module/Templates/DemoWeb/src/Models/Post.php.tpl | 11 +++-------- src/Module/Templates/DemoWeb/src/Models/User.php.tpl | 11 +++-------- .../DemoWeb/src/Services/AuthService.php.tpl | 11 +++-------- .../DemoWeb/src/Services/CommandService.php.tpl | 11 +++-------- .../DemoWeb/src/Services/CommentService.php.tpl | 11 +++-------- .../DemoWeb/src/Services/PostService.php.tpl | 11 +++-------- .../src/Transformers/CommentTransformer.php.tpl | 11 +++-------- .../DemoWeb/src/Transformers/PostTransformer.php.tpl | 11 +++-------- .../Toolkit/src/Controllers/BaseController.php.tpl | 11 +++-------- .../src/Controllers/DashboardController.php.tpl | 11 +++-------- .../src/Controllers/DatabaseController.php.tpl | 11 +++-------- .../Toolkit/src/Controllers/EmailsController.php.tpl | 11 +++-------- .../Toolkit/src/Controllers/LogsController.php.tpl | 11 +++-------- .../Toolkit/src/Middlewares/BaseMiddleware.php.tpl | 11 +++-------- .../Toolkit/src/Middlewares/BasicAuth.php.tpl | 11 +++-------- .../Toolkit/src/Middlewares/CreateTable.php.tpl | 11 +++-------- .../Toolkit/src/Services/DashboardService.php.tpl | 11 +++-------- .../Toolkit/src/Services/DatabaseService.php.tpl | 11 +++-------- .../Toolkit/src/Services/EmailService.php.tpl | 11 +++-------- .../Toolkit/src/Services/LogsService.php.tpl | 11 +++-------- .../Templates/Toolkit/src/helpers/toolkit.php.tpl | 11 +++-------- src/Paginator/Adapters/ArrayPaginator.php | 11 ++--------- src/Paginator/Adapters/ModelPaginator.php | 11 ++--------- src/Paginator/Contracts/PaginatorInterface.php | 11 ++--------- src/Paginator/Enums/ExceptionMessages.php | 11 ++--------- src/Paginator/Enums/Pagination.php | 11 ++--------- src/Paginator/Enums/PaginatorType.php | 11 ++--------- src/Paginator/Exceptions/PaginatorException.php | 11 ++--------- src/Paginator/Factories/PaginatorFactory.php | 11 ++--------- src/Paginator/Paginator.php | 11 ++--------- src/Paginator/Traits/PaginatorTrait.php | 11 ++--------- src/RateLimit/Adapters/FileRateLimitAdapter.php | 11 ++--------- src/RateLimit/Adapters/RedisRateLimitAdapter.php | 11 ++--------- src/RateLimit/Contracts/RateLimitAdapterInterface.php | 11 ++--------- src/RateLimit/Enums/ExceptionMessages.php | 11 ++--------- src/RateLimit/Enums/RateLimitType.php | 11 ++--------- src/RateLimit/Exceptions/RateLimitException.php | 11 ++--------- src/RateLimit/Factories/RateLimiterFactory.php | 11 ++--------- src/RateLimit/RateLimitMiddleware.php | 11 ++--------- src/RateLimit/RateLimiter.php | 11 ++--------- src/Renderer/Adapters/HtmlAdapter.php | 11 ++--------- src/Renderer/Adapters/TwigAdapter.php | 11 ++--------- src/Renderer/Contracts/TemplateRendererInterface.php | 11 ++--------- src/Renderer/Enums/RendererType.php | 11 ++--------- src/Renderer/Exceptions/RendererException.php | 11 ++--------- src/Renderer/Factories/RendererFactory.php | 11 ++--------- src/Renderer/Renderer.php | 11 ++--------- .../Exceptions/ResourceCacheException.php | 11 ++--------- src/ResourceCache/ViewCache.php | 11 ++--------- src/Router/Enums/ExceptionMessages.php | 11 ++--------- src/Router/Exceptions/RouteException.php | 11 ++--------- src/Router/Helpers/router.php | 10 ++-------- src/Router/MatchedRoute.php | 11 ++--------- src/Router/PatternCompiler.php | 11 ++--------- src/Router/Route.php | 11 ++--------- src/Router/RouteBuilder.php | 11 ++--------- src/Router/RouteCollection.php | 11 ++--------- src/Router/RouteDispatcher.php | 11 ++--------- src/Router/RouteFinder.php | 11 ++--------- src/Service/Exceptions/ServiceException.php | 11 ++--------- src/Service/Factories/ServiceFactory.php | 11 ++--------- src/Service/Helpers/service.php | 10 ++-------- src/Service/Service.php | 11 ++--------- src/Session/Adapters/Database/DatabaseHandler.php | 11 ++--------- .../Adapters/Database/DatabaseSessionAdapter.php | 11 ++--------- src/Session/Adapters/Native/NativeSessionAdapter.php | 11 ++--------- src/Session/Contracts/SessionStorageInterface.php | 11 ++--------- src/Session/Enums/ExceptionMessages.php | 11 ++--------- src/Session/Enums/SessionType.php | 11 ++--------- src/Session/Exceptions/SessionException.php | 11 ++--------- src/Session/Factories/SessionFactory.php | 11 ++--------- src/Session/Helpers/session.php | 10 ++-------- src/Session/Session.php | 11 ++--------- src/Session/Traits/SessionTrait.php | 11 ++--------- src/Storage/Adapters/Dropbox/DropboxApp.php | 11 ++--------- .../Adapters/Dropbox/DropboxFileSystemAdapter.php | 11 ++--------- src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php | 11 ++--------- .../GoogleDrive/GoogleDriveFileSystemAdapter.php | 11 ++--------- src/Storage/Adapters/Local/LocalFileSystemAdapter.php | 11 ++--------- src/Storage/Contracts/CloudAppInterface.php | 11 ++--------- src/Storage/Contracts/FilesystemAdapterInterface.php | 11 ++--------- .../Contracts/LocalFilesystemAdapterInterface.php | 11 ++--------- src/Storage/Contracts/TokenServiceInterface.php | 11 ++--------- src/Storage/Enums/ExceptionMessages.php | 11 ++--------- src/Storage/Enums/FileSystemType.php | 11 ++--------- src/Storage/Exceptions/FileSystemException.php | 11 ++--------- src/Storage/Exceptions/FileUploadException.php | 11 ++--------- src/Storage/Factories/FileSystemFactory.php | 11 ++--------- src/Storage/FileSystem.php | 11 ++--------- src/Storage/Helpers/fs.php | 10 ++-------- src/Storage/Traits/CloudAppTrait.php | 11 ++--------- src/Storage/UploadedFile.php | 11 ++--------- src/Storage/Uploads/UploadConfigProvider.php | 10 ++-------- src/Storage/Uploads/UploadPolicy.php | 10 ++-------- src/Storage/Uploads/UploadStorage.php | 10 ++-------- src/Tracer/ErrorHandler.php | 11 ++--------- src/Tracer/ExceptionSeverityResolver.php | 10 ++-------- src/Tracer/StackTraceFormatter.php | 10 ++-------- src/Tracer/WebExceptionRenderer.php | 10 ++-------- src/Transformer/Contracts/TransformerInterface.php | 11 ++--------- src/Transformer/Helpers/transformer.php | 10 ++-------- src/Transformer/Transformer.php | 11 ++--------- src/Validation/Rule.php | 11 ++--------- src/Validation/Traits/File.php | 11 ++--------- src/Validation/Traits/General.php | 11 ++--------- src/Validation/Traits/Length.php | 11 ++--------- src/Validation/Traits/Lists.php | 11 ++--------- src/Validation/Traits/Resource.php | 11 ++--------- src/Validation/Traits/Type.php | 11 ++--------- src/Validation/Validator.php | 11 ++--------- src/View/Enums/ExceptionMessages.php | 11 ++--------- src/View/Exceptions/ViewException.php | 11 ++--------- src/View/Factories/ViewFactory.php | 11 ++--------- src/View/Helpers/view.php | 10 ++-------- src/View/RawParam.php | 11 ++--------- src/View/View.php | 11 ++--------- tests/Unit/Console/Commands/CronRunCommandTest.php | 1 - tests/Unit/Cron/CronLockTest.php | 1 - tests/Unit/Cron/CronManagerTest.php | 1 - tests/Unit/Cron/CronTaskTest.php | 1 - .../cache/data/1cf9f20a82972297da8170028eaf98b1.lock | 0 .../cache/data/1cf9f20a82972297da8170028eaf98b1.rate | 1 + 446 files changed, 971 insertions(+), 3838 deletions(-) create mode 100644 tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.lock create mode 100644 tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate diff --git a/src/App/Adapters/AppAdapter.php b/src/App/Adapters/AppAdapter.php index 597043d7..774c5dc4 100644 --- a/src/App/Adapters/AppAdapter.php +++ b/src/App/Adapters/AppAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Adapters; @@ -21,7 +15,6 @@ /** * Class AppAdapter - * @package Quantum\App */ abstract class AppAdapter implements AppInterface { diff --git a/src/App/Adapters/ConsoleAppAdapter.php b/src/App/Adapters/ConsoleAppAdapter.php index 2a2b8730..d54437f6 100644 --- a/src/App/Adapters/ConsoleAppAdapter.php +++ b/src/App/Adapters/ConsoleAppAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Adapters; @@ -35,7 +29,6 @@ /** * Class ConsoleAppAdapter - * @package Quantum\App */ class ConsoleAppAdapter extends AppAdapter { diff --git a/src/App/Adapters/WebAppAdapter.php b/src/App/Adapters/WebAppAdapter.php index 7280233e..815d0c28 100644 --- a/src/App/Adapters/WebAppAdapter.php +++ b/src/App/Adapters/WebAppAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Adapters; @@ -44,7 +38,6 @@ /** * Class WebAppAdapter - * @package Quantum\App */ class WebAppAdapter extends AppAdapter { diff --git a/src/App/App.php b/src/App/App.php index 3bc38d3f..70ebf5a5 100644 --- a/src/App/App.php +++ b/src/App/App.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App; @@ -23,7 +17,6 @@ /** * Class App - * @package Quantum\App * * @method ?int start() */ diff --git a/src/App/AppContext.php b/src/App/AppContext.php index 9e588cbc..a4bb767d 100644 --- a/src/App/AppContext.php +++ b/src/App/AppContext.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App; @@ -25,7 +19,6 @@ /** * Class AppContext - * @package Quantum\App */ class AppContext { diff --git a/src/App/BootPipeline.php b/src/App/BootPipeline.php index 77310e15..886fefc9 100644 --- a/src/App/BootPipeline.php +++ b/src/App/BootPipeline.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App; @@ -21,7 +15,6 @@ /** * Class BootPipeline - * @package Quantum\App */ class BootPipeline { diff --git a/src/App/Contracts/AppInterface.php b/src/App/Contracts/AppInterface.php index 9f456b0e..3c94006b 100644 --- a/src/App/Contracts/AppInterface.php +++ b/src/App/Contracts/AppInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Contracts; /** * Interface AppInterface - * @package Quantum\App */ interface AppInterface { diff --git a/src/App/Contracts/BootStageInterface.php b/src/App/Contracts/BootStageInterface.php index 2fc19207..4b166db9 100644 --- a/src/App/Contracts/BootStageInterface.php +++ b/src/App/Contracts/BootStageInterface.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Contracts; @@ -20,7 +14,6 @@ /** * Interface BootStageInterface - * @package Quantum\App */ interface BootStageInterface { diff --git a/src/App/Enums/AppType.php b/src/App/Enums/AppType.php index 457fa844..065a11a3 100644 --- a/src/App/Enums/AppType.php +++ b/src/App/Enums/AppType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Enums; /** * Class AppType - * @package Quantum\App * @codeCoverageIgnore */ final class AppType diff --git a/src/App/Enums/ExceptionMessages.php b/src/App/Enums/ExceptionMessages.php index f913d061..fa61089a 100644 --- a/src/App/Enums/ExceptionMessages.php +++ b/src/App/Enums/ExceptionMessages.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Enums; /** * Class ExceptionMessages - * @package Quantum\App */ class ExceptionMessages { diff --git a/src/App/Enums/ExitCode.php b/src/App/Enums/ExitCode.php index 38fcea36..9ddf15c4 100644 --- a/src/App/Enums/ExitCode.php +++ b/src/App/Enums/ExitCode.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Enums; /** * Class ExitCode - * @package Quantum\App * @codeCoverageIgnore */ final class ExitCode diff --git a/src/App/Enums/ReservedKeys.php b/src/App/Enums/ReservedKeys.php index 976431c6..632ce975 100644 --- a/src/App/Enums/ReservedKeys.php +++ b/src/App/Enums/ReservedKeys.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Enums; /** * Class ReservedKeys - * @package Quantum\App */ final class ReservedKeys { diff --git a/src/App/Exceptions/AppException.php b/src/App/Exceptions/AppException.php index d6ac456e..e7abe163 100644 --- a/src/App/Exceptions/AppException.php +++ b/src/App/Exceptions/AppException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Exceptions; @@ -20,7 +14,6 @@ /** * Class AppException - * @package Quantum\App */ class AppException extends BaseException { diff --git a/src/App/Exceptions/BaseException.php b/src/App/Exceptions/BaseException.php index bb43505c..39153164 100644 --- a/src/App/Exceptions/BaseException.php +++ b/src/App/Exceptions/BaseException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Exceptions; @@ -21,7 +15,6 @@ /** * Class BaseException - * @package Quantum\App */ abstract class BaseException extends Exception { diff --git a/src/App/Factories/AppFactory.php b/src/App/Factories/AppFactory.php index e83b2ac6..61d5a389 100644 --- a/src/App/Factories/AppFactory.php +++ b/src/App/Factories/AppFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Factories; @@ -27,7 +21,6 @@ /** * Class AppFactory - * @package Quantum\App */ class AppFactory { diff --git a/src/App/Helpers/app.php b/src/App/Helpers/app.php index c005e414..86da6006 100644 --- a/src/App/Helpers/app.php +++ b/src/App/Helpers/app.php @@ -2,12 +2,6 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ diff --git a/src/App/Helpers/dir.php b/src/App/Helpers/dir.php index e653e773..cdea4218 100644 --- a/src/App/Helpers/dir.php +++ b/src/App/Helpers/dir.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\App\App; diff --git a/src/App/Helpers/misc.php b/src/App/Helpers/misc.php index 2a09310c..bfa86c4f 100644 --- a/src/App/Helpers/misc.php +++ b/src/App/Helpers/misc.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Symfony\Component\VarExporter\Exception\ExceptionInterface; diff --git a/src/App/Helpers/uuid.php b/src/App/Helpers/uuid.php index b0d9e9d3..f9d45ab2 100644 --- a/src/App/Helpers/uuid.php +++ b/src/App/Helpers/uuid.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Ramsey\Uuid\Uuid; diff --git a/src/App/Stages/InitDebuggerStage.php b/src/App/Stages/InitDebuggerStage.php index 56c9a31b..dda041d4 100644 --- a/src/App/Stages/InitDebuggerStage.php +++ b/src/App/Stages/InitDebuggerStage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Stages; @@ -21,7 +15,6 @@ /** * Class InitDebuggerStage - * @package Quantum\App */ class InitDebuggerStage implements BootStageInterface { diff --git a/src/App/Stages/InitHttpStage.php b/src/App/Stages/InitHttpStage.php index 693a8e88..0f900a21 100644 --- a/src/App/Stages/InitHttpStage.php +++ b/src/App/Stages/InitHttpStage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Stages; @@ -26,7 +20,6 @@ /** * Class InitHttpStage - * @package Quantum\App */ class InitHttpStage implements BootStageInterface { diff --git a/src/App/Stages/LoadAppConfigStage.php b/src/App/Stages/LoadAppConfigStage.php index 663e1996..9a5e1203 100644 --- a/src/App/Stages/LoadAppConfigStage.php +++ b/src/App/Stages/LoadAppConfigStage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Stages; @@ -26,7 +20,6 @@ /** * Class LoadAppConfigStage - * @package Quantum\App */ class LoadAppConfigStage implements BootStageInterface { diff --git a/src/App/Stages/LoadEnvironmentStage.php b/src/App/Stages/LoadEnvironmentStage.php index 0abdbaf3..cf31e3e7 100644 --- a/src/App/Stages/LoadEnvironmentStage.php +++ b/src/App/Stages/LoadEnvironmentStage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Stages; @@ -28,7 +22,6 @@ /** * Class LoadEnvironmentStage - * @package Quantum\App */ class LoadEnvironmentStage implements BootStageInterface { diff --git a/src/App/Stages/LoadHelpersStage.php b/src/App/Stages/LoadHelpersStage.php index 91a5f551..f876f099 100644 --- a/src/App/Stages/LoadHelpersStage.php +++ b/src/App/Stages/LoadHelpersStage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Stages; @@ -26,7 +20,6 @@ /** * Class LoadHelpersStage - * @package Quantum\App */ class LoadHelpersStage implements BootStageInterface { diff --git a/src/App/Stages/LoadModulesStage.php b/src/App/Stages/LoadModulesStage.php index 31c60b1d..be0c8f87 100644 --- a/src/App/Stages/LoadModulesStage.php +++ b/src/App/Stages/LoadModulesStage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Stages; @@ -29,7 +23,6 @@ /** * Class LoadModulesStage - * @package Quantum\App */ class LoadModulesStage implements BootStageInterface { diff --git a/src/App/Stages/SetupErrorHandlerStage.php b/src/App/Stages/SetupErrorHandlerStage.php index 3fa71a16..a243a8f4 100644 --- a/src/App/Stages/SetupErrorHandlerStage.php +++ b/src/App/Stages/SetupErrorHandlerStage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Stages; @@ -28,7 +22,6 @@ /** * Class SetupErrorHandlerStage - * @package Quantum\App */ class SetupErrorHandlerStage implements BootStageInterface { diff --git a/src/App/Traits/ConsoleAppTrait.php b/src/App/Traits/ConsoleAppTrait.php index b3e42fca..6c74e782 100644 --- a/src/App/Traits/ConsoleAppTrait.php +++ b/src/App/Traits/ConsoleAppTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Traits; @@ -24,7 +18,6 @@ /** * Class ConsoleAppTrait - * @package Quantum\App */ trait ConsoleAppTrait { diff --git a/src/App/Traits/WebAppTrait.php b/src/App/Traits/WebAppTrait.php index 853db8ef..24e409fa 100644 --- a/src/App/Traits/WebAppTrait.php +++ b/src/App/Traits/WebAppTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\App\Traits; @@ -36,7 +30,6 @@ /** * Trait WebAppTrait - * @package Quantum\App */ trait WebAppTrait { diff --git a/src/Archive/Adapters/PharAdapter.php b/src/Archive/Adapters/PharAdapter.php index 8bf88c63..8be1c7d6 100644 --- a/src/Archive/Adapters/PharAdapter.php +++ b/src/Archive/Adapters/PharAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive\Adapters; @@ -27,7 +21,6 @@ /** * Class PharAdapter - * @package Quantum\Archive */ class PharAdapter implements ArchiveInterface { diff --git a/src/Archive/Adapters/ZipAdapter.php b/src/Archive/Adapters/ZipAdapter.php index a29f7866..122f2251 100644 --- a/src/Archive/Adapters/ZipAdapter.php +++ b/src/Archive/Adapters/ZipAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive\Adapters; @@ -27,7 +21,6 @@ /** * Class ZipAdapter - * @package Quantum\Archive\Adapters */ class ZipAdapter implements ArchiveInterface { diff --git a/src/Archive/Archive.php b/src/Archive/Archive.php index 7c2e56f7..ea08a4ab 100644 --- a/src/Archive/Archive.php +++ b/src/Archive/Archive.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive; @@ -22,7 +16,6 @@ /** * Class Archive - * @package Quantum\Archive * @method void setName(string $archiveName) * @method bool offsetExists(string $filename) * @method bool addEmptyDir(string $directory) diff --git a/src/Archive/Contracts/ArchiveInterface.php b/src/Archive/Contracts/ArchiveInterface.php index 236c4721..53b90d89 100644 --- a/src/Archive/Contracts/ArchiveInterface.php +++ b/src/Archive/Contracts/ArchiveInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive\Contracts; /** * Interface ArchiveInterface - * @package Quantum\Archive */ interface ArchiveInterface { diff --git a/src/Archive/Enums/ArchiveType.php b/src/Archive/Enums/ArchiveType.php index f1defd8b..b92d44fe 100644 --- a/src/Archive/Enums/ArchiveType.php +++ b/src/Archive/Enums/ArchiveType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive\Enums; /** * Class ArchiveType - * @package Quantum\Archive * @codeCoverageIgnore */ final class ArchiveType diff --git a/src/Archive/Enums/ExceptionMessages.php b/src/Archive/Enums/ExceptionMessages.php index b953cc5e..8f6d4252 100644 --- a/src/Archive/Enums/ExceptionMessages.php +++ b/src/Archive/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Archive */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Archive/Exceptions/ArchiveException.php b/src/Archive/Exceptions/ArchiveException.php index 6eaaa729..13cd1567 100644 --- a/src/Archive/Exceptions/ArchiveException.php +++ b/src/Archive/Exceptions/ArchiveException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive\Exceptions; @@ -21,7 +15,6 @@ /** * Class CacheException - * @package Quantum\Archive */ class ArchiveException extends BaseException { diff --git a/src/Archive/Factories/ArchiveFactory.php b/src/Archive/Factories/ArchiveFactory.php index 73242675..7a833db8 100644 --- a/src/Archive/Factories/ArchiveFactory.php +++ b/src/Archive/Factories/ArchiveFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Archive\Factories; @@ -27,7 +21,6 @@ /** * Class ArchiveFactory - * @package Quantum\Archive */ class ArchiveFactory { diff --git a/src/Asset/Asset.php b/src/Asset/Asset.php index 86eb20df..4d6cac1e 100644 --- a/src/Asset/Asset.php +++ b/src/Asset/Asset.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Asset; @@ -21,7 +15,6 @@ /** * Class Asset - * @package Quantum\Asset */ class Asset { diff --git a/src/Asset/AssetManager.php b/src/Asset/AssetManager.php index 66a14e5f..fcda0bdb 100644 --- a/src/Asset/AssetManager.php +++ b/src/Asset/AssetManager.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Asset; @@ -22,7 +16,6 @@ /** * Class AssetFactory - * @package Quantum\Asset */ class AssetManager { diff --git a/src/Asset/Enums/ExceptionMessages.php b/src/Asset/Enums/ExceptionMessages.php index ba284ecf..fcf0c979 100644 --- a/src/Asset/Enums/ExceptionMessages.php +++ b/src/Asset/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Asset\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Asset */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Asset/Exceptions/AssetException.php b/src/Asset/Exceptions/AssetException.php index 81a73160..2c9e0bf8 100644 --- a/src/Asset/Exceptions/AssetException.php +++ b/src/Asset/Exceptions/AssetException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Asset\Exceptions; @@ -21,7 +15,6 @@ /** * Class AssetException - * @package Quantum\Asset */ class AssetException extends Exception { diff --git a/src/Asset/Helpers/asset.php b/src/Asset/Helpers/asset.php index 83a9ad0f..363f0329 100644 --- a/src/Asset/Helpers/asset.php +++ b/src/Asset/Helpers/asset.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Asset\Exceptions\AssetException; diff --git a/src/Auth/Adapters/JwtAuthAdapter.php b/src/Auth/Adapters/JwtAuthAdapter.php index ba415cbf..f3e87c5d 100644 --- a/src/Auth/Adapters/JwtAuthAdapter.php +++ b/src/Auth/Adapters/JwtAuthAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Adapters; @@ -32,7 +26,6 @@ /** * Class ApiAuth - * @package Quantum\Auth */ class JwtAuthAdapter implements AuthenticatableInterface { diff --git a/src/Auth/Adapters/SessionAuthAdapter.php b/src/Auth/Adapters/SessionAuthAdapter.php index 6e204178..6b5b4bc7 100644 --- a/src/Auth/Adapters/SessionAuthAdapter.php +++ b/src/Auth/Adapters/SessionAuthAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Adapters; @@ -34,7 +28,6 @@ /** * Class WebAuth - * @package Quantum\Auth */ class SessionAuthAdapter implements AuthenticatableInterface { diff --git a/src/Auth/Auth.php b/src/Auth/Auth.php index 821c3f9b..98070290 100644 --- a/src/Auth/Auth.php +++ b/src/Auth/Auth.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth; @@ -22,7 +16,6 @@ /** * Class Auth - * @package Quantum\Auth * @method mixed signin(string $username, string $password, bool $remember = false) * @method bool signout() * @method bool check() diff --git a/src/Auth/Contracts/AuthServiceInterface.php b/src/Auth/Contracts/AuthServiceInterface.php index f582e179..7f9d30c1 100644 --- a/src/Auth/Contracts/AuthServiceInterface.php +++ b/src/Auth/Contracts/AuthServiceInterface.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Contracts; @@ -20,7 +14,6 @@ /** * Interface AuthServiceInterface - * @package Quantum\Auth */ interface AuthServiceInterface { diff --git a/src/Auth/Contracts/AuthenticatableInterface.php b/src/Auth/Contracts/AuthenticatableInterface.php index 61096ba1..e1989977 100644 --- a/src/Auth/Contracts/AuthenticatableInterface.php +++ b/src/Auth/Contracts/AuthenticatableInterface.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Contracts; @@ -20,7 +14,6 @@ /** * Interface AuthenticatableInterface - * @package Quantum\Auth */ interface AuthenticatableInterface { diff --git a/src/Auth/Enums/AuthKeys.php b/src/Auth/Enums/AuthKeys.php index b2866493..524af6a0 100644 --- a/src/Auth/Enums/AuthKeys.php +++ b/src/Auth/Enums/AuthKeys.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Enums; /** * Class AuthKeys - * @package Quantum\Auth * @codeCoverageIgnore */ final class AuthKeys diff --git a/src/Auth/Enums/AuthType.php b/src/Auth/Enums/AuthType.php index 2339087b..1394e026 100644 --- a/src/Auth/Enums/AuthType.php +++ b/src/Auth/Enums/AuthType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Enums; /** * Class AuthType - * @package Quantum\Auth * @codeCoverageIgnore */ final class AuthType diff --git a/src/Auth/Enums/ExceptionMessages.php b/src/Auth/Enums/ExceptionMessages.php index 0132e501..7f8ebbfd 100644 --- a/src/Auth/Enums/ExceptionMessages.php +++ b/src/Auth/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Auth */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Auth/Exceptions/AuthException.php b/src/Auth/Exceptions/AuthException.php index 0e14861f..3385cc51 100644 --- a/src/Auth/Exceptions/AuthException.php +++ b/src/Auth/Exceptions/AuthException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Exceptions; @@ -21,7 +15,6 @@ /** * Class AuthException - * @package Quantum\Exceptions */ class AuthException extends BaseException { diff --git a/src/Auth/Factories/AuthFactory.php b/src/Auth/Factories/AuthFactory.php index 92c5d671..efe60835 100644 --- a/src/Auth/Factories/AuthFactory.php +++ b/src/Auth/Factories/AuthFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Factories; @@ -37,7 +31,6 @@ /** * Class AuthFactory - * @package Quantum\Auth */ class AuthFactory { diff --git a/src/Auth/Helpers/auth.php b/src/Auth/Helpers/auth.php index 0ddf5f5d..d27bca5a 100644 --- a/src/Auth/Helpers/auth.php +++ b/src/Auth/Helpers/auth.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Service\Exceptions\ServiceException; diff --git a/src/Auth/Traits/AuthTrait.php b/src/Auth/Traits/AuthTrait.php index 7364a074..6bef7783 100644 --- a/src/Auth/Traits/AuthTrait.php +++ b/src/Auth/Traits/AuthTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth\Traits; @@ -34,7 +28,6 @@ /** * Trait AuthTrait - * @package Quantum\Auth */ trait AuthTrait { diff --git a/src/Auth/User.php b/src/Auth/User.php index ab419b2b..eb37110a 100644 --- a/src/Auth/User.php +++ b/src/Auth/User.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Auth; /** * Class User - * @package Quantum\Auth */ class User { diff --git a/src/Cache/Adapters/DatabaseAdapter.php b/src/Cache/Adapters/DatabaseAdapter.php index babc87fd..56a82139 100644 --- a/src/Cache/Adapters/DatabaseAdapter.php +++ b/src/Cache/Adapters/DatabaseAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Adapters; @@ -28,7 +22,6 @@ /** * Class DatabaseAdapter - * @package Quantum\Cache */ class DatabaseAdapter implements CacheInterface { diff --git a/src/Cache/Adapters/FileAdapter.php b/src/Cache/Adapters/FileAdapter.php index 0dff661d..45535ab8 100644 --- a/src/Cache/Adapters/FileAdapter.php +++ b/src/Cache/Adapters/FileAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Adapters; @@ -30,7 +24,6 @@ /** * Class FileAdapter - * @package Quantum\Cache */ class FileAdapter implements CacheInterface { diff --git a/src/Cache/Adapters/MemcachedAdapter.php b/src/Cache/Adapters/MemcachedAdapter.php index 2d036e26..82ecb274 100644 --- a/src/Cache/Adapters/MemcachedAdapter.php +++ b/src/Cache/Adapters/MemcachedAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Adapters; @@ -27,7 +21,6 @@ /** * Class MemcachedAdapter - * @package Quantum\Cache */ class MemcachedAdapter implements CacheInterface { diff --git a/src/Cache/Adapters/RedisAdapter.php b/src/Cache/Adapters/RedisAdapter.php index 992aa75c..4baa871c 100644 --- a/src/Cache/Adapters/RedisAdapter.php +++ b/src/Cache/Adapters/RedisAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Adapters; @@ -26,7 +20,6 @@ /** * Class RedisAdapter - * @package Quantum\Cache */ class RedisAdapter implements CacheInterface { diff --git a/src/Cache/Cache.php b/src/Cache/Cache.php index a05e908c..5cc670de 100644 --- a/src/Cache/Cache.php +++ b/src/Cache/Cache.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache; @@ -22,7 +16,6 @@ /** * Class Cache - * @package Quantum\Cache * @method mixed get($key, $default = null) * @method iterable getMultiple($keys, $default = null) * @method has($key): bool diff --git a/src/Cache/Enums/CacheType.php b/src/Cache/Enums/CacheType.php index ae9eb7a1..c3238bcd 100644 --- a/src/Cache/Enums/CacheType.php +++ b/src/Cache/Enums/CacheType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Enums; /** * Class CacheType - * @package Quantum\Cache * @codeCoverageIgnore */ final class CacheType diff --git a/src/Cache/Enums/ExceptionMessages.php b/src/Cache/Enums/ExceptionMessages.php index 5dc4f5bb..9379c4f3 100644 --- a/src/Cache/Enums/ExceptionMessages.php +++ b/src/Cache/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Cache */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Cache/Exceptions/CacheException.php b/src/Cache/Exceptions/CacheException.php index 2a6c6f10..18eae324 100644 --- a/src/Cache/Exceptions/CacheException.php +++ b/src/Cache/Exceptions/CacheException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Exceptions; @@ -20,7 +14,6 @@ /** * Class CacheException - * @package Quantum\Cache * @codeCoverageIgnore */ class CacheException extends BaseException diff --git a/src/Cache/Factories/CacheFactory.php b/src/Cache/Factories/CacheFactory.php index 2f12d2df..4abd4b5d 100644 --- a/src/Cache/Factories/CacheFactory.php +++ b/src/Cache/Factories/CacheFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Factories; @@ -33,7 +27,6 @@ /** * Class CacheFactory - * @package Quantum\Cache */ class CacheFactory { diff --git a/src/Cache/Helpers/cache.php b/src/Cache/Helpers/cache.php index 7c85510c..2c12b879 100644 --- a/src/Cache/Helpers/cache.php +++ b/src/Cache/Helpers/cache.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Config\Exceptions\ConfigException; diff --git a/src/Cache/Traits/CacheTrait.php b/src/Cache/Traits/CacheTrait.php index 7a2bef12..425c2279 100644 --- a/src/Cache/Traits/CacheTrait.php +++ b/src/Cache/Traits/CacheTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cache\Traits; @@ -21,7 +15,6 @@ /** * Trait CacheTrait - * @package Quantum\Cache\Traits */ trait CacheTrait { diff --git a/src/Captcha/Adapters/HcaptchaAdapter.php b/src/Captcha/Adapters/HcaptchaAdapter.php index 91cac29e..64ff7dde 100644 --- a/src/Captcha/Adapters/HcaptchaAdapter.php +++ b/src/Captcha/Adapters/HcaptchaAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha\Adapters; @@ -22,7 +16,6 @@ /** * Class HcaptchaAdapter - * @package Quantum\Captcha */ class HcaptchaAdapter implements CaptchaInterface { diff --git a/src/Captcha/Adapters/RecaptchaAdapter.php b/src/Captcha/Adapters/RecaptchaAdapter.php index 9e08c060..41894f87 100644 --- a/src/Captcha/Adapters/RecaptchaAdapter.php +++ b/src/Captcha/Adapters/RecaptchaAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha\Adapters; @@ -22,7 +16,6 @@ /** * Class RecaptchaAdapter - * @package Quantum\Captcha */ class RecaptchaAdapter implements CaptchaInterface { diff --git a/src/Captcha/Captcha.php b/src/Captcha/Captcha.php index 71d4f0e0..f6a2d5fe 100644 --- a/src/Captcha/Captcha.php +++ b/src/Captcha/Captcha.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha; @@ -22,7 +16,6 @@ /** * Class Captcha - * @package Quantum\Captcha * @method string getName() * @method string|null getType() * @method CaptchaInterface setType(string $type) diff --git a/src/Captcha/Contracts/CaptchaInterface.php b/src/Captcha/Contracts/CaptchaInterface.php index e1e1ecc5..87cdf6ec 100644 --- a/src/Captcha/Contracts/CaptchaInterface.php +++ b/src/Captcha/Contracts/CaptchaInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha\Contracts; /** * Interface CaptchaInterface - * @package Quantum\Captcha */ interface CaptchaInterface { diff --git a/src/Captcha/Enums/CaptchaType.php b/src/Captcha/Enums/CaptchaType.php index f5aa7301..e1f0b20f 100644 --- a/src/Captcha/Enums/CaptchaType.php +++ b/src/Captcha/Enums/CaptchaType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha\Enums; /** * Class CaptchaType - * @package Quantum\Captcha * @codeCoverageIgnore */ final class CaptchaType diff --git a/src/Captcha/Exceptions/CaptchaException.php b/src/Captcha/Exceptions/CaptchaException.php index 61630ff9..09ece025 100644 --- a/src/Captcha/Exceptions/CaptchaException.php +++ b/src/Captcha/Exceptions/CaptchaException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha\Exceptions; @@ -20,7 +14,6 @@ /** * Class CaptchaException - * @package Quantum\Captcha * @codeCoverageIgnore */ class CaptchaException extends BaseException diff --git a/src/Captcha/Factories/CaptchaFactory.php b/src/Captcha/Factories/CaptchaFactory.php index 314160a2..07d8e869 100644 --- a/src/Captcha/Factories/CaptchaFactory.php +++ b/src/Captcha/Factories/CaptchaFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha\Factories; @@ -32,7 +26,6 @@ /** * Class CaptchaFactory - * @package Quantum\Captcha */ class CaptchaFactory { diff --git a/src/Captcha/Helpers/captcha.php b/src/Captcha/Helpers/captcha.php index 3e9a3a69..dbd18d81 100644 --- a/src/Captcha/Helpers/captcha.php +++ b/src/Captcha/Helpers/captcha.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Config\Exceptions\ConfigException; diff --git a/src/Captcha/Traits/CaptchaTrait.php b/src/Captcha/Traits/CaptchaTrait.php index b8dc04e6..d791ed9c 100644 --- a/src/Captcha/Traits/CaptchaTrait.php +++ b/src/Captcha/Traits/CaptchaTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Captcha\Traits; @@ -27,7 +21,6 @@ /** * Trait CaptchaTrait - * @package Quantum\Captcha */ trait CaptchaTrait { diff --git a/src/Config/Config.php b/src/Config/Config.php index 8cd4c2df..50134f94 100644 --- a/src/Config/Config.php +++ b/src/Config/Config.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Config; @@ -28,7 +22,6 @@ /** * Class Config - * @package Quantum\Config */ class Config implements ConfigInterface { diff --git a/src/Config/Contracts/ConfigInterface.php b/src/Config/Contracts/ConfigInterface.php index e4889090..0dc3b0ec 100644 --- a/src/Config/Contracts/ConfigInterface.php +++ b/src/Config/Contracts/ConfigInterface.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Config\Contracts; @@ -20,7 +14,6 @@ /** * Interface ConfigInterface - * @package Quantum\Config */ interface ConfigInterface { diff --git a/src/Config/Enums/ExceptionMessages.php b/src/Config/Enums/ExceptionMessages.php index a4bc8aa1..f4be754f 100644 --- a/src/Config/Enums/ExceptionMessages.php +++ b/src/Config/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Config\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Config */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Config/Exceptions/ConfigException.php b/src/Config/Exceptions/ConfigException.php index fdbafc31..99778270 100644 --- a/src/Config/Exceptions/ConfigException.php +++ b/src/Config/Exceptions/ConfigException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Config\Exceptions; @@ -21,7 +15,6 @@ /** * Class ConfigException - * @package Quantum\Config */ class ConfigException extends BaseException { diff --git a/src/Config/Helpers/config.php b/src/Config/Helpers/config.php index 05161449..61bafcbb 100644 --- a/src/Config/Helpers/config.php +++ b/src/Config/Helpers/config.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Config\Config; diff --git a/src/Console/CliCommand.php b/src/Console/CliCommand.php index a066a433..b0495262 100644 --- a/src/Console/CliCommand.php +++ b/src/Console/CliCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console; @@ -27,7 +21,6 @@ /** * Class CliCommand - * @package Quantum\Console */ abstract class CliCommand extends Command implements CommandInterface { diff --git a/src/Console/CommandDiscovery.php b/src/Console/CommandDiscovery.php index 27cb509c..e7850b7f 100644 --- a/src/Console/CommandDiscovery.php +++ b/src/Console/CommandDiscovery.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console; @@ -21,7 +15,6 @@ /** * Class CommandDiscovery - * @package Quantum\Console */ class CommandDiscovery { diff --git a/src/Console/Commands/CronRunCommand.php b/src/Console/Commands/CronRunCommand.php index 5982c1eb..63190bd0 100644 --- a/src/Console/Commands/CronRunCommand.php +++ b/src/Console/Commands/CronRunCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -27,7 +21,6 @@ /** * Class CronRunCommand - * @package Quantum\Console */ class CronRunCommand extends CliCommand { diff --git a/src/Console/Commands/DebugBarCommand.php b/src/Console/Commands/DebugBarCommand.php index ae059517..1cee10b3 100644 --- a/src/Console/Commands/DebugBarCommand.php +++ b/src/Console/Commands/DebugBarCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -25,7 +19,6 @@ /** * Class DebugBarAssetsCommand - * @package Quantum\Console */ class DebugBarCommand extends CliCommand { diff --git a/src/Console/Commands/EnvCommand.php b/src/Console/Commands/EnvCommand.php index 0aedec53..b2b4ebec 100644 --- a/src/Console/Commands/EnvCommand.php +++ b/src/Console/Commands/EnvCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -26,7 +20,6 @@ /** * Class EnvCommand - * @package Quantum\Console */ class EnvCommand extends CliCommand { diff --git a/src/Console/Commands/InstallToolkitCommand.php b/src/Console/Commands/InstallToolkitCommand.php index 75e14788..3074450b 100644 --- a/src/Console/Commands/InstallToolkitCommand.php +++ b/src/Console/Commands/InstallToolkitCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -29,7 +23,6 @@ /** * Class InstallToolkitCommand - * @package Quantum\Console */ class InstallToolkitCommand extends CliCommand { diff --git a/src/Console/Commands/KeyGenerateCommand.php b/src/Console/Commands/KeyGenerateCommand.php index f1e71d11..7a8fc444 100644 --- a/src/Console/Commands/KeyGenerateCommand.php +++ b/src/Console/Commands/KeyGenerateCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -22,7 +16,6 @@ /** * Class KeyGenerateCommand - * @package Quantum\Console */ class KeyGenerateCommand extends CliCommand { diff --git a/src/Console/Commands/MigrationGenerateCommand.php b/src/Console/Commands/MigrationGenerateCommand.php index 4d3165f4..a8cea7ee 100644 --- a/src/Console/Commands/MigrationGenerateCommand.php +++ b/src/Console/Commands/MigrationGenerateCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -22,7 +16,6 @@ /** * Class MigrationGenerateCommand - * @package Quantum\Console */ class MigrationGenerateCommand extends CliCommand { diff --git a/src/Console/Commands/MigrationMigrateCommand.php b/src/Console/Commands/MigrationMigrateCommand.php index 7f4b074f..f2e76099 100644 --- a/src/Console/Commands/MigrationMigrateCommand.php +++ b/src/Console/Commands/MigrationMigrateCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -24,7 +18,6 @@ /** * Class MigrationMigrateCommand - * @package Quantum\Console */ class MigrationMigrateCommand extends CliCommand { diff --git a/src/Console/Commands/ModuleGenerateCommand.php b/src/Console/Commands/ModuleGenerateCommand.php index e2be3ee9..9c641451 100644 --- a/src/Console/Commands/ModuleGenerateCommand.php +++ b/src/Console/Commands/ModuleGenerateCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -23,7 +17,6 @@ /** * Class ModuleGenerateCommand - * @package Quantum\Console\Commands */ class ModuleGenerateCommand extends CliCommand { diff --git a/src/Console/Commands/OpenApiCommand.php b/src/Console/Commands/OpenApiCommand.php index 38346f81..1c33eeda 100644 --- a/src/Console/Commands/OpenApiCommand.php +++ b/src/Console/Commands/OpenApiCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -32,7 +26,6 @@ /** * Class OpenApiCommand - * @package Quantum\Console */ class OpenApiCommand extends CliCommand { diff --git a/src/Console/Commands/ResourceCacheClearCommand.php b/src/Console/Commands/ResourceCacheClearCommand.php index 6229e02c..7a1fff51 100644 --- a/src/Console/Commands/ResourceCacheClearCommand.php +++ b/src/Console/Commands/ResourceCacheClearCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -29,7 +23,6 @@ /** * Class ResourceCacheClearCommand - * @package Quantum\Console */ class ResourceCacheClearCommand extends CliCommand { diff --git a/src/Console/Commands/RouteListCommand.php b/src/Console/Commands/RouteListCommand.php index 7b45a56d..484fa78c 100644 --- a/src/Console/Commands/RouteListCommand.php +++ b/src/Console/Commands/RouteListCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -30,7 +24,6 @@ /** * Class RouteListCommand - * @package Quantum\Console */ class RouteListCommand extends CliCommand { diff --git a/src/Console/Commands/ServeCommand.php b/src/Console/Commands/ServeCommand.php index e7a094b6..9211c28d 100644 --- a/src/Console/Commands/ServeCommand.php +++ b/src/Console/Commands/ServeCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -22,7 +16,6 @@ /** * Class ServeCommand - * @package Quantum\Console */ class ServeCommand extends CliCommand { diff --git a/src/Console/Commands/VersionCommand.php b/src/Console/Commands/VersionCommand.php index 349348bd..ca88f7d8 100644 --- a/src/Console/Commands/VersionCommand.php +++ b/src/Console/Commands/VersionCommand.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Commands; @@ -21,7 +15,6 @@ /** * Class VersionCommand - * @package Quantum\Console */ class VersionCommand extends CliCommand { diff --git a/src/Console/Contracts/CommandInterface.php b/src/Console/Contracts/CommandInterface.php index 33d17d46..c54afd2d 100644 --- a/src/Console/Contracts/CommandInterface.php +++ b/src/Console/Contracts/CommandInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Console\Contracts; /** * Interface CommandInterface - * @package Quantum\Console */ interface CommandInterface { diff --git a/src/Cookie/Contracts/CookieStorageInterface.php b/src/Cookie/Contracts/CookieStorageInterface.php index a7d4a385..a98cb067 100644 --- a/src/Cookie/Contracts/CookieStorageInterface.php +++ b/src/Cookie/Contracts/CookieStorageInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cookie\Contracts; /** * Interface CookieStorageInterface - * @package Quantum\Cookie */ interface CookieStorageInterface { diff --git a/src/Cookie/Cookie.php b/src/Cookie/Cookie.php index d990e019..7720eba0 100644 --- a/src/Cookie/Cookie.php +++ b/src/Cookie/Cookie.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cookie; @@ -21,7 +15,6 @@ /** * Class Cookie - * @package Quantum\Cookie */ class Cookie implements CookieStorageInterface { diff --git a/src/Cookie/Helpers/cookie.php b/src/Cookie/Helpers/cookie.php index a61fe772..4fd0876f 100644 --- a/src/Cookie/Helpers/cookie.php +++ b/src/Cookie/Helpers/cookie.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Di\Exceptions\DiException; diff --git a/src/Cron/Contracts/CronTaskInterface.php b/src/Cron/Contracts/CronTaskInterface.php index ea0feeb9..6c8e42e6 100644 --- a/src/Cron/Contracts/CronTaskInterface.php +++ b/src/Cron/Contracts/CronTaskInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cron\Contracts; /** * Interface CronTaskInterface - * @package Quantum\Cron */ interface CronTaskInterface { diff --git a/src/Cron/CronManager.php b/src/Cron/CronManager.php index d6ccf696..41b91bef 100644 --- a/src/Cron/CronManager.php +++ b/src/Cron/CronManager.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cron; @@ -28,7 +22,6 @@ /** * Class CronManager - * @package Quantum\Cron */ class CronManager { diff --git a/src/Cron/CronTask.php b/src/Cron/CronTask.php index f4abbe38..fd1ae857 100644 --- a/src/Cron/CronTask.php +++ b/src/Cron/CronTask.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cron; @@ -23,7 +17,6 @@ /** * Class CronTask - * @package Quantum\Cron */ class CronTask implements CronTaskInterface { diff --git a/src/Cron/Enums/ExceptionMessages.php b/src/Cron/Enums/ExceptionMessages.php index 0ba64695..591f2080 100644 --- a/src/Cron/Enums/ExceptionMessages.php +++ b/src/Cron/Enums/ExceptionMessages.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cron\Enums; /** * Enum ExceptionMessages - * @package Quantum\Cron * @codeCoverageIgnore */ final class ExceptionMessages diff --git a/src/Cron/Exceptions/CronException.php b/src/Cron/Exceptions/CronException.php index 4902113e..484c1c69 100644 --- a/src/Cron/Exceptions/CronException.php +++ b/src/Cron/Exceptions/CronException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cron\Exceptions; @@ -20,7 +14,6 @@ /** * Class CronException - * @package Quantum\Cron */ class CronException extends \Exception { diff --git a/src/Cron/Helpers/cron.php b/src/Cron/Helpers/cron.php index df3f6040..76a9c35b 100644 --- a/src/Cron/Helpers/cron.php +++ b/src/Cron/Helpers/cron.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Cron\Exceptions\CronException; diff --git a/src/Cron/Schedule.php b/src/Cron/Schedule.php index 8d28d7bc..214a6585 100644 --- a/src/Cron/Schedule.php +++ b/src/Cron/Schedule.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Cron; @@ -21,7 +15,6 @@ /** * Class Schedule * Fluent API for creating cron schedules - * @package Quantum\Cron */ class Schedule { diff --git a/src/Csrf/Csrf.php b/src/Csrf/Csrf.php index ba0688c4..e4552c00 100644 --- a/src/Csrf/Csrf.php +++ b/src/Csrf/Csrf.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Csrf; @@ -27,7 +21,6 @@ /** * Class Csrf - * @package Quantum\Csrf */ class Csrf { diff --git a/src/Csrf/Enums/ExceptionMessages.php b/src/Csrf/Enums/ExceptionMessages.php index 036b2744..6dac90a4 100644 --- a/src/Csrf/Enums/ExceptionMessages.php +++ b/src/Csrf/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Csrf\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Csrf */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Csrf/Exceptions/CsrfException.php b/src/Csrf/Exceptions/CsrfException.php index eb5feaf5..aba1c421 100644 --- a/src/Csrf/Exceptions/CsrfException.php +++ b/src/Csrf/Exceptions/CsrfException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Csrf\Exceptions; @@ -21,7 +15,6 @@ /** * Class CsrfException - * @package Quantum\Csrf */ class CsrfException extends BaseException { diff --git a/src/Csrf/Helpers/csrf.php b/src/Csrf/Helpers/csrf.php index d275e03e..631266d0 100644 --- a/src/Csrf/Helpers/csrf.php +++ b/src/Csrf/Helpers/csrf.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\App\Exceptions\BaseException; diff --git a/src/Database/Adapters/Idiorm/IdiormDbal.php b/src/Database/Adapters/Idiorm/IdiormDbal.php index 4a17a1eb..e02496fb 100644 --- a/src/Database/Adapters/Idiorm/IdiormDbal.php +++ b/src/Database/Adapters/Idiorm/IdiormDbal.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm; @@ -35,7 +29,6 @@ /** * Class IdiormDbal - * @package Quantum\Database */ class IdiormDbal implements DbalInterface, RelationalInterface { diff --git a/src/Database/Adapters/Idiorm/IdiormPatch.php b/src/Database/Adapters/Idiorm/IdiormPatch.php index f8ee0ec1..083f88b9 100644 --- a/src/Database/Adapters/Idiorm/IdiormPatch.php +++ b/src/Database/Adapters/Idiorm/IdiormPatch.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm; @@ -21,7 +15,6 @@ /** * Class IdiormPatch - * @package Quantum\Database */ class IdiormPatch extends ORM { diff --git a/src/Database/Adapters/Idiorm/Statements/Criteria.php b/src/Database/Adapters/Idiorm/Statements/Criteria.php index 537c9b3f..ac8bd9d3 100644 --- a/src/Database/Adapters/Idiorm/Statements/Criteria.php +++ b/src/Database/Adapters/Idiorm/Statements/Criteria.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm\Statements; @@ -22,7 +16,6 @@ /** * Trait Criteria - * @package Quantum\Database */ trait Criteria { diff --git a/src/Database/Adapters/Idiorm/Statements/Join.php b/src/Database/Adapters/Idiorm/Statements/Join.php index 7dced6ff..a07d0137 100644 --- a/src/Database/Adapters/Idiorm/Statements/Join.php +++ b/src/Database/Adapters/Idiorm/Statements/Join.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm\Statements; @@ -25,7 +19,6 @@ /** * Trait Join - * @package Quantum\Database */ trait Join { diff --git a/src/Database/Adapters/Idiorm/Statements/Model.php b/src/Database/Adapters/Idiorm/Statements/Model.php index c52e7d3d..9d314d95 100644 --- a/src/Database/Adapters/Idiorm/Statements/Model.php +++ b/src/Database/Adapters/Idiorm/Statements/Model.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm\Statements; @@ -22,7 +16,6 @@ /** * Trait Model - * @package Quantum\Database */ trait Model { diff --git a/src/Database/Adapters/Idiorm/Statements/Query.php b/src/Database/Adapters/Idiorm/Statements/Query.php index 248805d5..f902db7e 100644 --- a/src/Database/Adapters/Idiorm/Statements/Query.php +++ b/src/Database/Adapters/Idiorm/Statements/Query.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm\Statements; @@ -23,7 +17,6 @@ /** * Trait Query - * @package Quantum\Database */ trait Query { diff --git a/src/Database/Adapters/Idiorm/Statements/Reducer.php b/src/Database/Adapters/Idiorm/Statements/Reducer.php index 2b50b737..b84b09d6 100644 --- a/src/Database/Adapters/Idiorm/Statements/Reducer.php +++ b/src/Database/Adapters/Idiorm/Statements/Reducer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm\Statements; @@ -24,7 +18,6 @@ /** * Trait Modifier - * @package Quantum\Database */ trait Reducer { diff --git a/src/Database/Adapters/Idiorm/Statements/Result.php b/src/Database/Adapters/Idiorm/Statements/Result.php index d71a836e..1942b044 100644 --- a/src/Database/Adapters/Idiorm/Statements/Result.php +++ b/src/Database/Adapters/Idiorm/Statements/Result.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm\Statements; @@ -22,7 +16,6 @@ /** * Trait Result - * @package Quantum\Database */ trait Result { diff --git a/src/Database/Adapters/Idiorm/Statements/Transaction.php b/src/Database/Adapters/Idiorm/Statements/Transaction.php index 5a77e734..a927620c 100644 --- a/src/Database/Adapters/Idiorm/Statements/Transaction.php +++ b/src/Database/Adapters/Idiorm/Statements/Transaction.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Idiorm\Statements; @@ -21,7 +15,6 @@ /** * Trait Transaction - * @package Quantum\Database */ trait Transaction { diff --git a/src/Database/Adapters/Sleekdb/SleekDbal.php b/src/Database/Adapters/Sleekdb/SleekDbal.php index 0450aa3b..4b9ec7d3 100644 --- a/src/Database/Adapters/Sleekdb/SleekDbal.php +++ b/src/Database/Adapters/Sleekdb/SleekDbal.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Sleekdb; @@ -34,7 +28,6 @@ /** * Class SleekDbal - * @package Quantum\Database */ class SleekDbal implements DbalInterface { diff --git a/src/Database/Adapters/Sleekdb/Statements/Criteria.php b/src/Database/Adapters/Sleekdb/Statements/Criteria.php index a5c58605..2307bb4d 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Criteria.php +++ b/src/Database/Adapters/Sleekdb/Statements/Criteria.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Sleekdb\Statements; @@ -21,7 +15,6 @@ /** * Trait Criteria - * @package Quantum\Database */ trait Criteria { diff --git a/src/Database/Adapters/Sleekdb/Statements/Join.php b/src/Database/Adapters/Sleekdb/Statements/Join.php index 4d10829b..1982a611 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Join.php +++ b/src/Database/Adapters/Sleekdb/Statements/Join.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Sleekdb\Statements; @@ -27,7 +21,6 @@ /** * Trait Join - * @package Quantum\Database */ trait Join { diff --git a/src/Database/Adapters/Sleekdb/Statements/Model.php b/src/Database/Adapters/Sleekdb/Statements/Model.php index 6b63bd49..b5039c9d 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Model.php +++ b/src/Database/Adapters/Sleekdb/Statements/Model.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Sleekdb\Statements; @@ -28,7 +22,6 @@ /** * Trait Model - * @package Quantum\Database */ trait Model { diff --git a/src/Database/Adapters/Sleekdb/Statements/Reducer.php b/src/Database/Adapters/Sleekdb/Statements/Reducer.php index a6a3aa0c..818a8843 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Reducer.php +++ b/src/Database/Adapters/Sleekdb/Statements/Reducer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Sleekdb\Statements; @@ -22,7 +16,6 @@ /** * Trait Modifier - * @package Quantum\Database */ trait Reducer { diff --git a/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php b/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php index 98703450..182bf6c0 100644 --- a/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php +++ b/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Sleekdb\Statements; @@ -21,7 +15,6 @@ /** * Trait RelatedCriteria - * @package Quantum\Database */ trait RelatedCriteria { diff --git a/src/Database/Adapters/Sleekdb/Statements/Result.php b/src/Database/Adapters/Sleekdb/Statements/Result.php index ee9f1740..4826d1ee 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Result.php +++ b/src/Database/Adapters/Sleekdb/Statements/Result.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Adapters\Sleekdb\Statements; @@ -27,7 +21,6 @@ /** * Trait Result - * @package Quantum\Database */ trait Result { diff --git a/src/Database/Contracts/DbalInterface.php b/src/Database/Contracts/DbalInterface.php index 8521d594..4a976e0b 100644 --- a/src/Database/Contracts/DbalInterface.php +++ b/src/Database/Contracts/DbalInterface.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Contracts; @@ -20,7 +14,6 @@ /** * Database Abstract Layer interface - * @package Quantum\Database */ interface DbalInterface { diff --git a/src/Database/Contracts/RelationalInterface.php b/src/Database/Contracts/RelationalInterface.php index b0a94182..b1be91a5 100644 --- a/src/Database/Contracts/RelationalInterface.php +++ b/src/Database/Contracts/RelationalInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Contracts; /** * Database Abstract Layer interface - * @package Quantum\Database */ interface RelationalInterface { diff --git a/src/Database/Database.php b/src/Database/Database.php index 5c972197..ec108673 100644 --- a/src/Database/Database.php +++ b/src/Database/Database.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database; @@ -30,7 +24,6 @@ /** * Class Database - * @package Quantum\Database */ class Database { diff --git a/src/Database/Enums/DatabaseType.php b/src/Database/Enums/DatabaseType.php index e34e26c0..2e842699 100644 --- a/src/Database/Enums/DatabaseType.php +++ b/src/Database/Enums/DatabaseType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Enums; /** * Class DatabaseType - * @package Quantum\Database * @codeCoverageIgnore */ final class DatabaseType diff --git a/src/Database/Enums/ExceptionMessages.php b/src/Database/Enums/ExceptionMessages.php index 549423db..1c8c6ea8 100644 --- a/src/Database/Enums/ExceptionMessages.php +++ b/src/Database/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Database */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Database/Enums/Key.php b/src/Database/Enums/Key.php index 766d759e..8df7fc78 100644 --- a/src/Database/Enums/Key.php +++ b/src/Database/Enums/Key.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Enums; /** * Class Key - * @package Quantum\Database * @codeCoverageIgnore */ final class Key diff --git a/src/Database/Enums/Relation.php b/src/Database/Enums/Relation.php index 26cc460a..9bbacd8f 100644 --- a/src/Database/Enums/Relation.php +++ b/src/Database/Enums/Relation.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Enums; /** * Class Relation - * @package Quantum\Database * @codeCoverageIgnore */ final class Relation diff --git a/src/Database/Enums/Type.php b/src/Database/Enums/Type.php index 5786d2ef..203596ba 100644 --- a/src/Database/Enums/Type.php +++ b/src/Database/Enums/Type.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Enums; /** * Class Type - * @package Quantum\Database * @codeCoverageIgnore */ final class Type diff --git a/src/Database/Exceptions/DatabaseException.php b/src/Database/Exceptions/DatabaseException.php index c0d2e783..c6f791f9 100644 --- a/src/Database/Exceptions/DatabaseException.php +++ b/src/Database/Exceptions/DatabaseException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Exceptions; @@ -21,7 +15,6 @@ /** * Class DatabaseException - * @package Quantum\Database */ class DatabaseException extends BaseException { diff --git a/src/Database/Factories/TableFactory.php b/src/Database/Factories/TableFactory.php index f2bc3875..504f3fa3 100644 --- a/src/Database/Factories/TableFactory.php +++ b/src/Database/Factories/TableFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Factories; @@ -23,7 +17,6 @@ /** * Class TableFactory - * @package Quantum\Factory */ class TableFactory { diff --git a/src/Database/Helpers/db.php b/src/Database/Helpers/db.php index 7933962e..954b6698 100644 --- a/src/Database/Helpers/db.php +++ b/src/Database/Helpers/db.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Database\Database; diff --git a/src/Database/Schemas/Column.php b/src/Database/Schemas/Column.php index 9fe6d211..09d04c97 100644 --- a/src/Database/Schemas/Column.php +++ b/src/Database/Schemas/Column.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Schemas; @@ -20,7 +14,6 @@ /** * Class Column - * @package Quantum\Database */ class Column { diff --git a/src/Database/Schemas/Table.php b/src/Database/Schemas/Table.php index 578fc429..ead0a98f 100644 --- a/src/Database/Schemas/Table.php +++ b/src/Database/Schemas/Table.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Schemas; @@ -24,7 +18,6 @@ /** * Class Table - * @package Quantum\Database * * @method self autoIncrement() * @method self primary() diff --git a/src/Database/Traits/RelationalTrait.php b/src/Database/Traits/RelationalTrait.php index f06a2290..401715e8 100644 --- a/src/Database/Traits/RelationalTrait.php +++ b/src/Database/Traits/RelationalTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Traits; @@ -21,7 +15,6 @@ /** * Trait RelationalTrait - * @package Quantum\Database */ trait RelationalTrait { diff --git a/src/Database/Traits/TableTrait.php b/src/Database/Traits/TableTrait.php index e954209f..8290d97f 100644 --- a/src/Database/Traits/TableTrait.php +++ b/src/Database/Traits/TableTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Traits; @@ -21,7 +15,6 @@ /** * Trait TableTrait - * @package Quantum\Database */ trait TableTrait { diff --git a/src/Database/Traits/TransactionTrait.php b/src/Database/Traits/TransactionTrait.php index f3fd3f51..b6309c69 100644 --- a/src/Database/Traits/TransactionTrait.php +++ b/src/Database/Traits/TransactionTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Database\Traits; @@ -23,7 +17,6 @@ /** * Trait TransactionTrait - * @package Quantum\Database */ trait TransactionTrait { diff --git a/src/Debugger/Contracts/DebuggerStoreInterface.php b/src/Debugger/Contracts/DebuggerStoreInterface.php index 6f860f13..7cd0df0c 100644 --- a/src/Debugger/Contracts/DebuggerStoreInterface.php +++ b/src/Debugger/Contracts/DebuggerStoreInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Debugger\Contracts; /** * Interface DebuggerStoreInterface - * @package Quantum\Debugger */ interface DebuggerStoreInterface { diff --git a/src/Debugger/Debugger.php b/src/Debugger/Debugger.php index dad00f0b..551fb2ed 100644 --- a/src/Debugger/Debugger.php +++ b/src/Debugger/Debugger.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Debugger; @@ -29,7 +23,6 @@ /** * Class Debugger - * @package Quantum\Debugger * @uses DebugBar */ class Debugger diff --git a/src/Debugger/DebuggerStore.php b/src/Debugger/DebuggerStore.php index ea90829c..65706424 100644 --- a/src/Debugger/DebuggerStore.php +++ b/src/Debugger/DebuggerStore.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Debugger; @@ -20,7 +14,6 @@ /** * Class DebuggerStore - * @package Quantum\Debugger */ class DebuggerStore implements DebuggerStoreInterface { diff --git a/src/Debugger/Helpers/debugger.php b/src/Debugger/Helpers/debugger.php index c17aa1ca..1a00575f 100644 --- a/src/Debugger/Helpers/debugger.php +++ b/src/Debugger/Helpers/debugger.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Debugger\Debugger; diff --git a/src/Di/Di.php b/src/Di/Di.php index d3bbc932..2813ef24 100644 --- a/src/Di/Di.php +++ b/src/Di/Di.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Di; @@ -27,7 +21,6 @@ * owned by AppContext. Preserves the existing static API * for full backward compatibility. * - * @package Quantum/Di * @method static void registerDependencies(array $dependencies) * @method static void register(string $concrete, ?string $abstract = null) * @method static bool isRegistered(string $abstract) diff --git a/src/Di/DiContainer.php b/src/Di/DiContainer.php index ce87f14d..dabcac00 100644 --- a/src/Di/DiContainer.php +++ b/src/Di/DiContainer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Di; @@ -30,7 +24,6 @@ * Instance-based dependency injection container. * Holds all dependency registrations and resolved instances for a single application execution. * - * @package Quantum/Di */ class DiContainer { diff --git a/src/Di/DiRegistry.php b/src/Di/DiRegistry.php index 1070813a..63b26a63 100644 --- a/src/Di/DiRegistry.php +++ b/src/Di/DiRegistry.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Di; @@ -24,7 +18,6 @@ * * Stores dependency bindings for the container. * - * @package Quantum/Di */ class DiRegistry { diff --git a/src/Di/Enums/ExceptionMessages.php b/src/Di/Enums/ExceptionMessages.php index dbdb6194..290f553b 100644 --- a/src/Di/Enums/ExceptionMessages.php +++ b/src/Di/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Di\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Di */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Di/Exceptions/DiException.php b/src/Di/Exceptions/DiException.php index 76ffdded..553d9253 100644 --- a/src/Di/Exceptions/DiException.php +++ b/src/Di/Exceptions/DiException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Di\Exceptions; @@ -21,7 +15,6 @@ /** * Class DiException - * @package Quantum\Di */ class DiException extends BaseException { diff --git a/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php b/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php index 58c7976c..342d1ac2 100644 --- a/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php +++ b/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption\Adapters; @@ -22,7 +16,6 @@ /** * Class AsymmetricEncryptionAdapter - * @package Quantum\Encryption */ class AsymmetricEncryptionAdapter implements EncryptionInterface { diff --git a/src/Encryption/Adapters/SymmetricEncryptionAdapter.php b/src/Encryption/Adapters/SymmetricEncryptionAdapter.php index 57eb663f..41af6f07 100644 --- a/src/Encryption/Adapters/SymmetricEncryptionAdapter.php +++ b/src/Encryption/Adapters/SymmetricEncryptionAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption\Adapters; @@ -24,7 +18,6 @@ /** * Class SymmetricEncryptionAdapter - * @package Quantum\Encryption */ class SymmetricEncryptionAdapter implements EncryptionInterface { diff --git a/src/Encryption/Contracts/EncryptionInterface.php b/src/Encryption/Contracts/EncryptionInterface.php index 8f5d85ef..ac239197 100644 --- a/src/Encryption/Contracts/EncryptionInterface.php +++ b/src/Encryption/Contracts/EncryptionInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption\Contracts; /** * Interface EncryptionInterface - * @package Quantum\Encryption */ interface EncryptionInterface { diff --git a/src/Encryption/Cryptor.php b/src/Encryption/Cryptor.php index de72055b..11a4d23f 100644 --- a/src/Encryption/Cryptor.php +++ b/src/Encryption/Cryptor.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption; @@ -23,7 +17,6 @@ /** * Class Cryptor - * @package Quantum\Encryption * @method string encrypt(string $plain) * @method string decrypt(string $encrypted) */ diff --git a/src/Encryption/Enums/CryptorType.php b/src/Encryption/Enums/CryptorType.php index 3b6451b5..bb11e9e4 100644 --- a/src/Encryption/Enums/CryptorType.php +++ b/src/Encryption/Enums/CryptorType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption\Enums; /** * Class CryptorType - * @package Quantum\Encryption * @codeCoverageIgnore */ final class CryptorType diff --git a/src/Encryption/Enums/ExceptionMessages.php b/src/Encryption/Enums/ExceptionMessages.php index df7f91d2..d8aed043 100644 --- a/src/Encryption/Enums/ExceptionMessages.php +++ b/src/Encryption/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Encryption */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Encryption/Exceptions/CryptorException.php b/src/Encryption/Exceptions/CryptorException.php index cf9b97de..b44f97ba 100644 --- a/src/Encryption/Exceptions/CryptorException.php +++ b/src/Encryption/Exceptions/CryptorException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption\Exceptions; @@ -21,7 +15,6 @@ /** * Class CryptorException - * @package Quantum\Encryption */ class CryptorException extends BaseException { diff --git a/src/Encryption/Factories/CryptorFactory.php b/src/Encryption/Factories/CryptorFactory.php index 2416ee85..dfa4ef23 100644 --- a/src/Encryption/Factories/CryptorFactory.php +++ b/src/Encryption/Factories/CryptorFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Encryption\Factories; @@ -27,7 +21,6 @@ /** * Class Cryptor - * @package Quantum\Encryption */ class CryptorFactory { diff --git a/src/Encryption/Helpers/encryption.php b/src/Encryption/Helpers/encryption.php index c799800f..38c83fd2 100644 --- a/src/Encryption/Helpers/encryption.php +++ b/src/Encryption/Helpers/encryption.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Encryption\Factories\CryptorFactory; diff --git a/src/Environment/Enums/Env.php b/src/Environment/Enums/Env.php index 4bd72bf6..980ac55f 100644 --- a/src/Environment/Enums/Env.php +++ b/src/Environment/Enums/Env.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Environment\Enums; /** * Class Env - * @package Quantum\Environment * @codeCoverageIgnore */ final class Env diff --git a/src/Environment/Enums/ExceptionMessages.php b/src/Environment/Enums/ExceptionMessages.php index 52758a45..432686f5 100644 --- a/src/Environment/Enums/ExceptionMessages.php +++ b/src/Environment/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Environment\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Environment */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Environment/Environment.php b/src/Environment/Environment.php index b5002b76..3583b7f3 100644 --- a/src/Environment/Environment.php +++ b/src/Environment/Environment.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Environment; @@ -30,7 +24,6 @@ /** * Class Environment - * @package Quantum\Environment * @uses Dotenv */ class Environment diff --git a/src/Environment/Exceptions/EnvException.php b/src/Environment/Exceptions/EnvException.php index 63776583..ac0e0363 100644 --- a/src/Environment/Exceptions/EnvException.php +++ b/src/Environment/Exceptions/EnvException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Environment\Exceptions; @@ -21,7 +15,6 @@ /** * Class EnvException - * @package Quantum\Exceptions */ class EnvException extends BaseException { diff --git a/src/Environment/Helpers/env.php b/src/Environment/Helpers/env.php index 1c04dccc..860cbe84 100644 --- a/src/Environment/Helpers/env.php +++ b/src/Environment/Helpers/env.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Environment\Exceptions\EnvException; diff --git a/src/Environment/Helpers/server.php b/src/Environment/Helpers/server.php index d615a4f6..c41b16ce 100644 --- a/src/Environment/Helpers/server.php +++ b/src/Environment/Helpers/server.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Di\Exceptions\DiException; diff --git a/src/Environment/Server.php b/src/Environment/Server.php index 80fccbe3..e8d8eab3 100644 --- a/src/Environment/Server.php +++ b/src/Environment/Server.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Environment; /** * Class Server - * @package Quantum\Environment */ class Server { diff --git a/src/Hasher/Enums/ExceptionMessages.php b/src/Hasher/Enums/ExceptionMessages.php index 8e1b2aa4..590120e1 100644 --- a/src/Hasher/Enums/ExceptionMessages.php +++ b/src/Hasher/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Hasher\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Hasher */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Hasher/Exceptions/HasherException.php b/src/Hasher/Exceptions/HasherException.php index 70ade083..00ccd9da 100644 --- a/src/Hasher/Exceptions/HasherException.php +++ b/src/Hasher/Exceptions/HasherException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Hasher\Exceptions; @@ -21,7 +15,6 @@ /** * Class HasherException - * @package Quantum\Hasher */ class HasherException extends BaseException { diff --git a/src/Hasher/Hasher.php b/src/Hasher/Hasher.php index 6e88c2dd..eeeecefc 100644 --- a/src/Hasher/Hasher.php +++ b/src/Hasher/Hasher.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Hasher; @@ -20,7 +14,6 @@ /** * Hasher class - * @package Quantum\Hasher */ class Hasher { diff --git a/src/Hook/Enums/ExceptionMessages.php b/src/Hook/Enums/ExceptionMessages.php index 4d15bab6..99edff65 100644 --- a/src/Hook/Enums/ExceptionMessages.php +++ b/src/Hook/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Hook\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Hook */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Hook/Exceptions/HookException.php b/src/Hook/Exceptions/HookException.php index 60dbdb5d..74a8febf 100644 --- a/src/Hook/Exceptions/HookException.php +++ b/src/Hook/Exceptions/HookException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Hook\Exceptions; @@ -21,7 +15,6 @@ /** * Class HookException - * @package Quantum\Exceptions */ class HookException extends BaseException { diff --git a/src/Hook/Helpers/hook.php b/src/Hook/Helpers/hook.php index 58a87b6f..5ed6499e 100644 --- a/src/Hook/Helpers/hook.php +++ b/src/Hook/Helpers/hook.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Di\Exceptions\DiException; diff --git a/src/Hook/HookManager.php b/src/Hook/HookManager.php index 2961c85d..c8367881 100644 --- a/src/Hook/HookManager.php +++ b/src/Hook/HookManager.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Hook; @@ -25,7 +19,6 @@ /** * Class HookManager - * @package Quantum\Hooks */ class HookManager { diff --git a/src/Http/Enums/ContentType.php b/src/Http/Enums/ContentType.php index d6e0e0b3..23255b23 100644 --- a/src/Http/Enums/ContentType.php +++ b/src/Http/Enums/ContentType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Enums; /** * Class ContentType - * @package Quantum\Http * @codeCoverageIgnore */ final class ContentType diff --git a/src/Http/Enums/StatusCode.php b/src/Http/Enums/StatusCode.php index 63e37a5d..a21ac6ae 100644 --- a/src/Http/Enums/StatusCode.php +++ b/src/Http/Enums/StatusCode.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Enums; /** * Class StatusCode - * @package Quantum\Http * @codeCoverageIgnore */ final class StatusCode diff --git a/src/Http/Exceptions/HttpException.php b/src/Http/Exceptions/HttpException.php index 7164c48d..d01ce1ae 100644 --- a/src/Http/Exceptions/HttpException.php +++ b/src/Http/Exceptions/HttpException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Exceptions; @@ -20,7 +14,6 @@ /** * Class HttpException - * @package Quantum\Http * @codeCoverageIgnore */ class HttpException extends BaseException diff --git a/src/Http/Helpers/http.php b/src/Http/Helpers/http.php index c2a38510..981f11f2 100644 --- a/src/Http/Helpers/http.php +++ b/src/Http/Helpers/http.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Config\Exceptions\ConfigException; diff --git a/src/Http/Request.php b/src/Http/Request.php index 8593381c..d5e1db52 100644 --- a/src/Http/Request.php +++ b/src/Http/Request.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http; @@ -35,7 +29,6 @@ /** * Class Request - * @package Quantum\Http */ class Request { diff --git a/src/Http/Response.php b/src/Http/Response.php index 881f75ab..375de1e1 100644 --- a/src/Http/Response.php +++ b/src/Http/Response.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http; @@ -24,7 +18,6 @@ /** * Class Response - * @package Quantum\Http */ class Response { diff --git a/src/Http/Traits/Request/Body.php b/src/Http/Traits/Request/Body.php index 2043e0d4..487cc3df 100644 --- a/src/Http/Traits/Request/Body.php +++ b/src/Http/Traits/Request/Body.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; @@ -21,7 +15,6 @@ /** * Trait Body - * @package Quantum\Http\Request */ trait Body { diff --git a/src/Http/Traits/Request/File.php b/src/Http/Traits/Request/File.php index 96085583..d8b6491c 100644 --- a/src/Http/Traits/Request/File.php +++ b/src/Http/Traits/Request/File.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; @@ -22,7 +16,6 @@ /** * Trait File - * @package Quantum\Http\Request */ trait File { diff --git a/src/Http/Traits/Request/Header.php b/src/Http/Traits/Request/Header.php index bef430b1..6ea0f1a3 100644 --- a/src/Http/Traits/Request/Header.php +++ b/src/Http/Traits/Request/Header.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; /** * Trait Header - * @package Quantum\Http\Request */ trait Header { diff --git a/src/Http/Traits/Request/Internal.php b/src/Http/Traits/Request/Internal.php index 0e421762..4e1f920c 100644 --- a/src/Http/Traits/Request/Internal.php +++ b/src/Http/Traits/Request/Internal.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; @@ -25,7 +19,6 @@ /** * Trait Internal - * @package Quantum\Http\Request */ trait Internal { diff --git a/src/Http/Traits/Request/Params.php b/src/Http/Traits/Request/Params.php index 3e1bdd09..b103db98 100644 --- a/src/Http/Traits/Request/Params.php +++ b/src/Http/Traits/Request/Params.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; @@ -24,7 +18,6 @@ /** * Trait Params - * @package Quantum\Http\Request */ trait Params { diff --git a/src/Http/Traits/Request/Query.php b/src/Http/Traits/Request/Query.php index 90ace61f..cbe0c51f 100644 --- a/src/Http/Traits/Request/Query.php +++ b/src/Http/Traits/Request/Query.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; /** * Trait Query - * @package Quantum\Http\Request */ trait Query { diff --git a/src/Http/Traits/Request/RawInput.php b/src/Http/Traits/Request/RawInput.php index a8c1b9d1..e71f2668 100644 --- a/src/Http/Traits/Request/RawInput.php +++ b/src/Http/Traits/Request/RawInput.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; @@ -26,7 +20,6 @@ /** * Class RawInput - * @package Quantum\Http */ trait RawInput { diff --git a/src/Http/Traits/Request/Route.php b/src/Http/Traits/Request/Route.php index ede02467..b928a1a7 100644 --- a/src/Http/Traits/Request/Route.php +++ b/src/Http/Traits/Request/Route.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; @@ -24,7 +18,6 @@ /** * Trait Route - * @package Quantum\Http\Request */ trait Route { diff --git a/src/Http/Traits/Request/Url.php b/src/Http/Traits/Request/Url.php index 89aa7f9f..46903ba0 100644 --- a/src/Http/Traits/Request/Url.php +++ b/src/Http/Traits/Request/Url.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Request; /** * Trait Url - * @package Quantum\Http\Request */ trait Url { diff --git a/src/Http/Traits/Response/Body.php b/src/Http/Traits/Response/Body.php index d05b81b4..a5f905b7 100644 --- a/src/Http/Traits/Response/Body.php +++ b/src/Http/Traits/Response/Body.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Response; @@ -25,7 +19,6 @@ /** * Trait Body - * @package Quantum\Http\Response */ trait Body { diff --git a/src/Http/Traits/Response/Header.php b/src/Http/Traits/Response/Header.php index 99e2b3d9..987eb6e9 100644 --- a/src/Http/Traits/Response/Header.php +++ b/src/Http/Traits/Response/Header.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Response; @@ -20,7 +14,6 @@ /** * Trait Header - * @package Quantum\Http\Response */ trait Header { diff --git a/src/Http/Traits/Response/Status.php b/src/Http/Traits/Response/Status.php index 580c8808..2544aa13 100644 --- a/src/Http/Traits/Response/Status.php +++ b/src/Http/Traits/Response/Status.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Http\Traits\Response; @@ -21,7 +15,6 @@ /** * Trait Status - * @package Quantum\Http\Response */ trait Status { diff --git a/src/HttpClient/Enums/ExceptionMessages.php b/src/HttpClient/Enums/ExceptionMessages.php index 0a1493bc..db962c0f 100644 --- a/src/HttpClient/Enums/ExceptionMessages.php +++ b/src/HttpClient/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\HttpClient\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\HttpClient */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/HttpClient/Exceptions/HttpClientException.php b/src/HttpClient/Exceptions/HttpClientException.php index 8ceae9bb..463769ae 100644 --- a/src/HttpClient/Exceptions/HttpClientException.php +++ b/src/HttpClient/Exceptions/HttpClientException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\HttpClient\Exceptions; @@ -21,7 +15,6 @@ /** * Class HasherException - * @package Quantum\Hasher */ class HttpClientException extends BaseException { diff --git a/src/HttpClient/HttpClient.php b/src/HttpClient/HttpClient.php index 45f51b7c..9e1a64ee 100644 --- a/src/HttpClient/HttpClient.php +++ b/src/HttpClient/HttpClient.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\HttpClient; @@ -25,7 +19,6 @@ /** * HttpClient Class - * @package Quantum\HttpClient * @uses php-curl-class/php-curl-class * @method object addGet(string $url, array $data = []) * @method object addPost(string $url, string $data = '', bool $follow_303_with_post = false) diff --git a/src/Jwt/Enums/ExceptionMessages.php b/src/Jwt/Enums/ExceptionMessages.php index 650dc682..bafe73f8 100644 --- a/src/Jwt/Enums/ExceptionMessages.php +++ b/src/Jwt/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Jwt\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Jwt */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Jwt/Exceptions/JwtException.php b/src/Jwt/Exceptions/JwtException.php index 39fddeb4..1604a343 100644 --- a/src/Jwt/Exceptions/JwtException.php +++ b/src/Jwt/Exceptions/JwtException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Jwt\Exceptions; @@ -21,7 +15,6 @@ /** * Class JwtException - * @package Quantum\JwtToken */ class JwtException extends BaseException { diff --git a/src/Jwt/JwtToken.php b/src/Jwt/JwtToken.php index 42d029e6..c649fec0 100644 --- a/src/Jwt/JwtToken.php +++ b/src/Jwt/JwtToken.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Jwt; @@ -23,7 +17,6 @@ /** * Class JwtToken - * @package Quantum\JwtToken * @uses JWT */ class JwtToken extends JWT diff --git a/src/Lang/Enums/ExceptionMessages.php b/src/Lang/Enums/ExceptionMessages.php index 634a1ba5..8f1af25f 100644 --- a/src/Lang/Enums/ExceptionMessages.php +++ b/src/Lang/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Lang\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Lang */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Lang/Exceptions/LangException.php b/src/Lang/Exceptions/LangException.php index fdacc87c..97fc1898 100644 --- a/src/Lang/Exceptions/LangException.php +++ b/src/Lang/Exceptions/LangException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Lang\Exceptions; @@ -21,7 +15,6 @@ /** * Class LangException - * @package Quantum\Lang */ class LangException extends BaseException { diff --git a/src/Lang/Factories/LangFactory.php b/src/Lang/Factories/LangFactory.php index 7e520902..15c11627 100644 --- a/src/Lang/Factories/LangFactory.php +++ b/src/Lang/Factories/LangFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Lang\Factories; @@ -28,7 +22,6 @@ /** * Class LangFactory - * @package Quantum\Lang */ class LangFactory { diff --git a/src/Lang/Helpers/lang.php b/src/Lang/Helpers/lang.php index 06671848..9e79f89a 100644 --- a/src/Lang/Helpers/lang.php +++ b/src/Lang/Helpers/lang.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Config\Exceptions\ConfigException; diff --git a/src/Lang/Lang.php b/src/Lang/Lang.php index c0c685fd..79df97db 100644 --- a/src/Lang/Lang.php +++ b/src/Lang/Lang.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Lang; @@ -25,7 +19,6 @@ /** * Class Lang - * @package Quantum\Lang */ class Lang { diff --git a/src/Lang/Translator.php b/src/Lang/Translator.php index f7b59a62..5a701773 100644 --- a/src/Lang/Translator.php +++ b/src/Lang/Translator.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Lang; @@ -26,7 +20,6 @@ /** * Class Translator - * @package Quantum\Lang */ class Translator { diff --git a/src/Loader/Exceptions/LoaderException.php b/src/Loader/Exceptions/LoaderException.php index 8951f489..8f9fe99c 100644 --- a/src/Loader/Exceptions/LoaderException.php +++ b/src/Loader/Exceptions/LoaderException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Loader\Exceptions; @@ -21,7 +15,6 @@ /** * DatabaseException class * - * @package Quantum * @category Exceptions * @codeCoverageIgnore */ diff --git a/src/Loader/Loader.php b/src/Loader/Loader.php index cc1bc96b..ef66588b 100644 --- a/src/Loader/Loader.php +++ b/src/Loader/Loader.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Loader; @@ -21,7 +15,6 @@ /** * Class Loader - * @package Quantum\Loader */ class Loader { diff --git a/src/Loader/Setup.php b/src/Loader/Setup.php index 03fbf05d..71df96b1 100644 --- a/src/Loader/Setup.php +++ b/src/Loader/Setup.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Loader; @@ -21,7 +15,6 @@ /** * Class Setup - * @package Quantum\Loader */ class Setup { diff --git a/src/Logger/Adapters/DailyAdapter.php b/src/Logger/Adapters/DailyAdapter.php index 702317f5..2dd1b9bc 100644 --- a/src/Logger/Adapters/DailyAdapter.php +++ b/src/Logger/Adapters/DailyAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Adapters; @@ -27,7 +21,6 @@ /** * Class DailyAdapter - * @package Quantum\Logger */ class DailyAdapter implements ReportableInterface { diff --git a/src/Logger/Adapters/MessageAdapter.php b/src/Logger/Adapters/MessageAdapter.php index 448ad1b6..5fce4d9b 100644 --- a/src/Logger/Adapters/MessageAdapter.php +++ b/src/Logger/Adapters/MessageAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Adapters; @@ -21,7 +15,6 @@ /** * Class MessageAdapter - * @package Quantum\Logger */ class MessageAdapter implements ReportableInterface { diff --git a/src/Logger/Adapters/SingleAdapter.php b/src/Logger/Adapters/SingleAdapter.php index abf1838a..4f1017a3 100644 --- a/src/Logger/Adapters/SingleAdapter.php +++ b/src/Logger/Adapters/SingleAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Adapters; @@ -27,7 +21,6 @@ /** * Class SingleAdapter - * @package Quantum\Logger */ class SingleAdapter implements ReportableInterface { diff --git a/src/Logger/Contracts/ReportableInterface.php b/src/Logger/Contracts/ReportableInterface.php index 8660d4df..793878bb 100644 --- a/src/Logger/Contracts/ReportableInterface.php +++ b/src/Logger/Contracts/ReportableInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Contracts; /** * Interface ReportableInterface - * @package Quantum\Logger */ interface ReportableInterface { diff --git a/src/Logger/Enums/ExceptionMessages.php b/src/Logger/Enums/ExceptionMessages.php index 40fa2e3a..f5d9ebe5 100644 --- a/src/Logger/Enums/ExceptionMessages.php +++ b/src/Logger/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Logger */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Logger/Enums/LoggerType.php b/src/Logger/Enums/LoggerType.php index cf306212..6d55cd0d 100644 --- a/src/Logger/Enums/LoggerType.php +++ b/src/Logger/Enums/LoggerType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Enums; /** * Class LoggerType - * @package Quantum\Logger * @codeCoverageIgnore */ final class LoggerType diff --git a/src/Logger/Exceptions/LoggerException.php b/src/Logger/Exceptions/LoggerException.php index de55d44a..9ac3e9d4 100644 --- a/src/Logger/Exceptions/LoggerException.php +++ b/src/Logger/Exceptions/LoggerException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Exceptions; @@ -21,7 +15,6 @@ /** * Class LoggerException - * @package Quantum\Logger */ class LoggerException extends BaseException { diff --git a/src/Logger/Factories/LoggerFactory.php b/src/Logger/Factories/LoggerFactory.php index b1bb39c6..f1f4f12f 100644 --- a/src/Logger/Factories/LoggerFactory.php +++ b/src/Logger/Factories/LoggerFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Factories; @@ -33,7 +27,6 @@ /** * Class LoggerFactory - * @package Quantum\Logger */ class LoggerFactory { diff --git a/src/Logger/Helpers/logger.php b/src/Logger/Helpers/logger.php index fb6bff68..e11618dd 100644 --- a/src/Logger/Helpers/logger.php +++ b/src/Logger/Helpers/logger.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Config\Exceptions\ConfigException; diff --git a/src/Logger/Logger.php b/src/Logger/Logger.php index 0da6da95..8dd5d371 100644 --- a/src/Logger/Logger.php +++ b/src/Logger/Logger.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger; @@ -22,7 +16,6 @@ /** * Class Logger - * @package Quantum\Logger */ class Logger implements LoggerInterface { diff --git a/src/Logger/LoggerConfig.php b/src/Logger/LoggerConfig.php index ed1042da..f4c2be28 100644 --- a/src/Logger/LoggerConfig.php +++ b/src/Logger/LoggerConfig.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger; /** * Class LoggerConfig - * @package Quantum\Logger */ class LoggerConfig { diff --git a/src/Logger/Traits/LoggerTrait.php b/src/Logger/Traits/LoggerTrait.php index 88eff7c3..c9ebdb48 100644 --- a/src/Logger/Traits/LoggerTrait.php +++ b/src/Logger/Traits/LoggerTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Logger\Traits; @@ -21,7 +15,6 @@ /** * Trait LoggerTrait - * @package Quantum\Logger */ trait LoggerTrait { diff --git a/src/Mailer/Adapters/MailgunAdapter.php b/src/Mailer/Adapters/MailgunAdapter.php index 1ac8c676..de37ccb8 100644 --- a/src/Mailer/Adapters/MailgunAdapter.php +++ b/src/Mailer/Adapters/MailgunAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Adapters; @@ -23,7 +17,6 @@ /** * class MailgunAdapter - * @package Quantum\Mailer */ class MailgunAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/MandrillAdapter.php b/src/Mailer/Adapters/MandrillAdapter.php index f29a7ad5..192e8393 100644 --- a/src/Mailer/Adapters/MandrillAdapter.php +++ b/src/Mailer/Adapters/MandrillAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Adapters; @@ -23,7 +17,6 @@ /** * class MandrillAdapter - * @package Quantum\Mailer */ class MandrillAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/ResendAdapter.php b/src/Mailer/Adapters/ResendAdapter.php index f0fd6b45..2a1877a7 100644 --- a/src/Mailer/Adapters/ResendAdapter.php +++ b/src/Mailer/Adapters/ResendAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Adapters; @@ -23,7 +17,6 @@ /** * class ResendAdapter - * @package Quantum\Mailer */ class ResendAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/SendgridAdapter.php b/src/Mailer/Adapters/SendgridAdapter.php index 8e6372bb..f263fd72 100644 --- a/src/Mailer/Adapters/SendgridAdapter.php +++ b/src/Mailer/Adapters/SendgridAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Adapters; @@ -23,7 +17,6 @@ /** * class SendgridAdapter - * @package Quantum\Mailer */ class SendgridAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/SendinblueAdapter.php b/src/Mailer/Adapters/SendinblueAdapter.php index 4e3c0936..eb948c3a 100644 --- a/src/Mailer/Adapters/SendinblueAdapter.php +++ b/src/Mailer/Adapters/SendinblueAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Adapters; @@ -23,7 +17,6 @@ /** * class SendinblueAdapter - * @package Quantum\Mailer */ class SendinblueAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/SmtpAdapter.php b/src/Mailer/Adapters/SmtpAdapter.php index 76fb65c1..2881fb4b 100644 --- a/src/Mailer/Adapters/SmtpAdapter.php +++ b/src/Mailer/Adapters/SmtpAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Adapters; @@ -27,7 +21,6 @@ /** * class SmtpAdapter - * @package Quantum\Mailer */ class SmtpAdapter implements MailerInterface { diff --git a/src/Mailer/Contracts/MailerInterface.php b/src/Mailer/Contracts/MailerInterface.php index 76d172ff..498d18a1 100644 --- a/src/Mailer/Contracts/MailerInterface.php +++ b/src/Mailer/Contracts/MailerInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Contracts; /** * Interface MailerInterface - * @package Quantum\Mailer */ interface MailerInterface { diff --git a/src/Mailer/Enums/MailerType.php b/src/Mailer/Enums/MailerType.php index 4a8c3120..cc6dbae0 100644 --- a/src/Mailer/Enums/MailerType.php +++ b/src/Mailer/Enums/MailerType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Enums; /** * Class MailerType - * @package Quantum\Mailer * @codeCoverageIgnore */ final class MailerType diff --git a/src/Mailer/Exceptions/MailerException.php b/src/Mailer/Exceptions/MailerException.php index facc443f..700e1f67 100644 --- a/src/Mailer/Exceptions/MailerException.php +++ b/src/Mailer/Exceptions/MailerException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Exceptions; @@ -20,7 +14,6 @@ /** * Class MailerException - * @package Quantum\Mailer * @codeCoverageIgnore */ class MailerException extends BaseException diff --git a/src/Mailer/Factories/MailerFactory.php b/src/Mailer/Factories/MailerFactory.php index a503782f..6ae34965 100644 --- a/src/Mailer/Factories/MailerFactory.php +++ b/src/Mailer/Factories/MailerFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Factories; @@ -35,7 +29,6 @@ /** * class MailerFactory - * @package Quantum\Mailer */ class MailerFactory { diff --git a/src/Mailer/Helpers/mailer.php b/src/Mailer/Helpers/mailer.php index 81fb688c..b5158df3 100644 --- a/src/Mailer/Helpers/mailer.php +++ b/src/Mailer/Helpers/mailer.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Config\Exceptions\ConfigException; diff --git a/src/Mailer/MailTrap.php b/src/Mailer/MailTrap.php index 6e03ca8f..ca9357d9 100644 --- a/src/Mailer/MailTrap.php +++ b/src/Mailer/MailTrap.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer; @@ -29,7 +23,6 @@ /** * class MailTrap - * @package Quantum\Mailer */ class MailTrap { diff --git a/src/Mailer/Mailer.php b/src/Mailer/Mailer.php index 5cb82e7d..45dc020c 100644 --- a/src/Mailer/Mailer.php +++ b/src/Mailer/Mailer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer; @@ -22,7 +16,6 @@ /** * Class Mailer - * @package Quantum\Mailer * @method MailerInterface setFrom(string $email, ?string $name = null) * @method array getFrom() * @method MailerInterface setAddress(string $email, ?string $name = null) diff --git a/src/Mailer/Traits/MailerTrait.php b/src/Mailer/Traits/MailerTrait.php index 04fed8b7..2c3f4e12 100644 --- a/src/Mailer/Traits/MailerTrait.php +++ b/src/Mailer/Traits/MailerTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Mailer\Traits; @@ -26,7 +20,6 @@ /** * trait MailerTrait - * @package Quantum\Mailer */ trait MailerTrait { diff --git a/src/Middleware/Enums/ExceptionMessages.php b/src/Middleware/Enums/ExceptionMessages.php index 4c4e366d..db18846d 100644 --- a/src/Middleware/Enums/ExceptionMessages.php +++ b/src/Middleware/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Middleware\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Middleware */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Middleware/Exceptions/MiddlewareException.php b/src/Middleware/Exceptions/MiddlewareException.php index 74e879cf..3d7a45a8 100644 --- a/src/Middleware/Exceptions/MiddlewareException.php +++ b/src/Middleware/Exceptions/MiddlewareException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Middleware\Exceptions; @@ -21,7 +15,6 @@ /** * Class MiddlewareException - * @package Quantum\Exceptions */ class MiddlewareException extends BaseException { diff --git a/src/Middleware/Middleware.php b/src/Middleware/Middleware.php index a9f5b595..d39408f1 100644 --- a/src/Middleware/Middleware.php +++ b/src/Middleware/Middleware.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Middleware; @@ -22,7 +16,6 @@ /** * Class Middleware - * @package Quantum\Middleware */ abstract class Middleware { diff --git a/src/Middleware/MiddlewareManager.php b/src/Middleware/MiddlewareManager.php index 6e5403fd..6e9e5d28 100644 --- a/src/Middleware/MiddlewareManager.php +++ b/src/Middleware/MiddlewareManager.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Middleware; @@ -27,7 +21,6 @@ /** * Class MiddlewareManager - * @package Quantum\Middleware */ class MiddlewareManager { diff --git a/src/Migration/Enums/ExceptionMessages.php b/src/Migration/Enums/ExceptionMessages.php index 56e78498..c8e90d24 100644 --- a/src/Migration/Enums/ExceptionMessages.php +++ b/src/Migration/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Migration\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Migration */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Migration/Exceptions/MigrationException.php b/src/Migration/Exceptions/MigrationException.php index 9ba4c38f..19289227 100644 --- a/src/Migration/Exceptions/MigrationException.php +++ b/src/Migration/Exceptions/MigrationException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Migration\Exceptions; @@ -22,7 +16,6 @@ /** * MigrationException class * - * @package Quantum * @category Exceptions */ class MigrationException extends BaseException diff --git a/src/Migration/Migration.php b/src/Migration/Migration.php index 6da28420..c7ebe460 100644 --- a/src/Migration/Migration.php +++ b/src/Migration/Migration.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Migration; @@ -20,7 +14,6 @@ /** * Class Migration - * @package Quantum\Migration */ abstract class Migration { diff --git a/src/Migration/MigrationManager.php b/src/Migration/MigrationManager.php index 34e37cba..ab123fcd 100644 --- a/src/Migration/MigrationManager.php +++ b/src/Migration/MigrationManager.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Migration; @@ -31,7 +25,6 @@ /** * Class MigrationManager - * @package Quantum\Migration */ class MigrationManager { diff --git a/src/Migration/MigrationTable.php b/src/Migration/MigrationTable.php index 82eee603..94a32220 100644 --- a/src/Migration/MigrationTable.php +++ b/src/Migration/MigrationTable.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Migration; @@ -22,7 +16,6 @@ /** * Class MigrationTable - * @package Quantum\Migration */ class MigrationTable extends Migration { diff --git a/src/Migration/Templates/MigrationTemplate.php b/src/Migration/Templates/MigrationTemplate.php index 2671f596..b0833b0d 100644 --- a/src/Migration/Templates/MigrationTemplate.php +++ b/src/Migration/Templates/MigrationTemplate.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Migration\Templates; /** * Class MigrationTable - * @package Quantum\Migration */ class MigrationTemplate { diff --git a/src/Model/DbModel.php b/src/Model/DbModel.php index 6124dc33..ff41c17a 100644 --- a/src/Model/DbModel.php +++ b/src/Model/DbModel.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model; @@ -26,7 +20,6 @@ /** * Class DbModel - * @package Quantum\Model * * @method string getTable() * @method string getModelName() diff --git a/src/Model/Enums/ExceptionMessages.php b/src/Model/Enums/ExceptionMessages.php index 23996ede..626e0404 100644 --- a/src/Model/Enums/ExceptionMessages.php +++ b/src/Model/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Model */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Model/Exceptions/ModelException.php b/src/Model/Exceptions/ModelException.php index 8cbaa802..9932eecb 100644 --- a/src/Model/Exceptions/ModelException.php +++ b/src/Model/Exceptions/ModelException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model\Exceptions; @@ -21,7 +15,6 @@ /** * Class ModelException - * @package Quantum\Model */ class ModelException extends BaseException { diff --git a/src/Model/Factories/ModelFactory.php b/src/Model/Factories/ModelFactory.php index 0e1fc395..f2497916 100644 --- a/src/Model/Factories/ModelFactory.php +++ b/src/Model/Factories/ModelFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model\Factories; @@ -26,7 +20,6 @@ /** * Class ModelFactory - * @package Quantum\Model */ class ModelFactory { diff --git a/src/Model/Helpers/model.php b/src/Model/Helpers/model.php index f026b7d5..86cea7cb 100644 --- a/src/Model/Helpers/model.php +++ b/src/Model/Helpers/model.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Database\Contracts\DbalInterface; diff --git a/src/Model/Model.php b/src/Model/Model.php index 8e460c54..3db66719 100644 --- a/src/Model/Model.php +++ b/src/Model/Model.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model; @@ -20,7 +14,6 @@ /** * Class Model - * @package Quantum\Model */ abstract class Model { diff --git a/src/Model/ModelCollection.php b/src/Model/ModelCollection.php index 3cd16d19..1b988c1e 100644 --- a/src/Model/ModelCollection.php +++ b/src/Model/ModelCollection.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model; @@ -24,7 +18,6 @@ /** * Class ModelCollection - * @package Quantum\Model * @template TKey of array-key * @template TValue of Model * @implements IteratorAggregate diff --git a/src/Model/Traits/HasTimestamps.php b/src/Model/Traits/HasTimestamps.php index b29ab81e..f60b2a4b 100644 --- a/src/Model/Traits/HasTimestamps.php +++ b/src/Model/Traits/HasTimestamps.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model\Traits; diff --git a/src/Model/Traits/SoftDeletes.php b/src/Model/Traits/SoftDeletes.php index b842643b..8482f50b 100644 --- a/src/Model/Traits/SoftDeletes.php +++ b/src/Model/Traits/SoftDeletes.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Model\Traits; @@ -25,7 +19,6 @@ /** * Trait SoftDeletes - * @package Quantum\Model */ trait SoftDeletes { diff --git a/src/Module/Enums/ExceptionMessages.php b/src/Module/Enums/ExceptionMessages.php index 8f1a4adb..61bf270e 100644 --- a/src/Module/Enums/ExceptionMessages.php +++ b/src/Module/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Module\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Module */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Module/Exceptions/ModuleException.php b/src/Module/Exceptions/ModuleException.php index 36d3cb59..0ca7b874 100644 --- a/src/Module/Exceptions/ModuleException.php +++ b/src/Module/Exceptions/ModuleException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Module\Exceptions; @@ -20,7 +14,6 @@ /** * Class ModuleLoaderException - * @package Quantum\Module */ class ModuleException extends \Exception { diff --git a/src/Module/ModuleLoader.php b/src/Module/ModuleLoader.php index cf55cbfe..8c60dd52 100644 --- a/src/Module/ModuleLoader.php +++ b/src/Module/ModuleLoader.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Module; @@ -30,7 +24,6 @@ /** * Class ModuleLoader - * @package Quantum\Module */ class ModuleLoader { diff --git a/src/Module/ModuleManager.php b/src/Module/ModuleManager.php index fb48c314..f6be5f39 100644 --- a/src/Module/ModuleManager.php +++ b/src/Module/ModuleManager.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Module; @@ -29,7 +23,6 @@ /** * Class ModuleManager - * @package Quantum\Module */ class ModuleManager { diff --git a/src/Module/Templates/DefaultApi/src/Controllers/MainController.php.tpl b/src/Module/Templates/DefaultApi/src/Controllers/MainController.php.tpl index 89f04960..772bfd54 100644 --- a/src/Module/Templates/DefaultApi/src/Controllers/MainController.php.tpl +++ b/src/Module/Templates/DefaultApi/src/Controllers/MainController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -48,3 +42,4 @@ class MainController ]); } } + diff --git a/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiController.php.tpl b/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiController.php.tpl index 30b63189..21478d04 100644 --- a/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiController.php.tpl +++ b/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers\OpenApi; @@ -33,3 +27,4 @@ abstract class OpenApiController { } + diff --git a/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiMainController.php.tpl b/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiMainController.php.tpl index 970b4c02..29322da8 100644 --- a/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiMainController.php.tpl +++ b/src/Module/Templates/DefaultApi/src/Controllers/OpenApi/OpenApiMainController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers\OpenApi; @@ -43,3 +37,4 @@ abstract class OpenApiMainController extends OpenApiController abstract public function index(); } + diff --git a/src/Module/Templates/DefaultWeb/src/Controllers/MainController.php.tpl b/src/Module/Templates/DefaultWeb/src/Controllers/MainController.php.tpl index c7f8178d..78c0bf52 100644 --- a/src/Module/Templates/DefaultWeb/src/Controllers/MainController.php.tpl +++ b/src/Module/Templates/DefaultWeb/src/Controllers/MainController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -53,3 +47,4 @@ class MainController return response()->html($view->render('index')); } } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/AccountController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/AccountController.php.tpl index 48ebcc43..894fd5c4 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/AccountController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/AccountController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -90,3 +84,4 @@ class AccountController extends BaseController } } } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/AuthController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/AuthController.php.tpl index 62f8f020..03937600 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/AuthController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/AuthController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -173,3 +167,4 @@ class AuthController extends BaseController } } } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/BaseController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/BaseController.php.tpl index 99398163..0eb7fecf 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/BaseController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/BaseController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -36,3 +30,4 @@ abstract class BaseController */ public bool $csrfVerification = false; } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/CommentController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/CommentController.php.tpl index d7d1d2f0..c59c2042 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/CommentController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/CommentController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -61,3 +55,4 @@ class CommentController extends BaseController ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAccountController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAccountController.php.tpl index 85874f98..37182d82 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAccountController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAccountController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers\OpenApi; @@ -95,3 +89,4 @@ abstract class OpenApiAccountController extends OpenApiController } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAuthController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAuthController.php.tpl index 29bba1f8..ffc99fd1 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAuthController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiAuthController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers\OpenApi; @@ -306,3 +300,4 @@ abstract class OpenApiAuthController extends OpenApiController } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiCommentController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiCommentController.php.tpl index d96a88dd..a70c1147 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiCommentController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiCommentController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers\OpenApi; @@ -93,3 +87,4 @@ abstract class OpenApiCommentController extends OpenApiController + diff --git a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiController.php.tpl index a6bed844..c9473a6b 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.8 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers\OpenApi; @@ -33,3 +27,4 @@ abstract class OpenApiController { } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiPostController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiPostController.php.tpl index dea31e5c..e2ca22dd 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiPostController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/OpenApi/OpenApiPostController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers\OpenApi; @@ -286,3 +280,4 @@ abstract class OpenApiPostController extends OpenApiController } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/PostController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/PostController.php.tpl index 9c995087..63e24bae 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/PostController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/PostController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -102,3 +96,4 @@ class PostController extends BaseController ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Controllers/PostManagementController.php.tpl b/src/Module/Templates/DemoApi/src/Controllers/PostManagementController.php.tpl index 3d1e2266..af921f4a 100644 --- a/src/Module/Templates/DemoApi/src/Controllers/PostManagementController.php.tpl +++ b/src/Module/Templates/DemoApi/src/Controllers/PostManagementController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -155,3 +149,4 @@ class PostManagementController extends BaseController ]); } } + diff --git a/src/Module/Templates/DemoApi/src/DTOs/CommentDTO.php.tpl b/src/Module/Templates/DemoApi/src/DTOs/CommentDTO.php.tpl index 72550e91..1d10ebf8 100644 --- a/src/Module/Templates/DemoApi/src/DTOs/CommentDTO.php.tpl +++ b/src/Module/Templates/DemoApi/src/DTOs/CommentDTO.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\DTOs; @@ -67,3 +61,4 @@ class CommentDTO ]; } } + diff --git a/src/Module/Templates/DemoApi/src/DTOs/PostDTO.php.tpl b/src/Module/Templates/DemoApi/src/DTOs/PostDTO.php.tpl index 0b84e9f2..a75027a3 100644 --- a/src/Module/Templates/DemoApi/src/DTOs/PostDTO.php.tpl +++ b/src/Module/Templates/DemoApi/src/DTOs/PostDTO.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\DTOs; @@ -84,3 +78,4 @@ class PostDTO }); } } + diff --git a/src/Module/Templates/DemoApi/src/DTOs/UserDTO.php.tpl b/src/Module/Templates/DemoApi/src/DTOs/UserDTO.php.tpl index 3b8b1feb..66ed5298 100644 --- a/src/Module/Templates/DemoApi/src/DTOs/UserDTO.php.tpl +++ b/src/Module/Templates/DemoApi/src/DTOs/UserDTO.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\DTOs; @@ -119,3 +113,4 @@ class UserDTO }); } } + diff --git a/src/Module/Templates/DemoApi/src/Enums/Role.php.tpl b/src/Module/Templates/DemoApi/src/Enums/Role.php.tpl index b14ef58e..db584019 100644 --- a/src/Module/Templates/DemoApi/src/Enums/Role.php.tpl +++ b/src/Module/Templates/DemoApi/src/Enums/Role.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.9 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Enums; @@ -24,3 +18,4 @@ class Role const EDITOR = 'editor'; } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Activate.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Activate.php.tpl index b85a5c86..2540b3e5 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Activate.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Activate.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -54,3 +48,4 @@ class Activate extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Auth.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Auth.php.tpl index 5243a0f1..342b7bc4 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Auth.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Auth.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -37,3 +31,4 @@ class Auth extends BaseMiddleware return $next($request); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/BaseMiddleware.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/BaseMiddleware.php.tpl index 84062ed3..9a072096 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/BaseMiddleware.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/BaseMiddleware.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -70,3 +64,4 @@ abstract class BaseMiddleware extends Middleware ], $status); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Comment.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Comment.php.tpl index 5bb49e4f..df064298 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Comment.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Comment.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -48,3 +42,4 @@ class Comment extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/CommentOwner.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/CommentOwner.php.tpl index a5d314e9..999ba9da 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/CommentOwner.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/CommentOwner.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -65,3 +59,4 @@ class CommentOwner extends BaseMiddleware }); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Editor.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Editor.php.tpl index 36759cdf..91022914 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Editor.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Editor.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -88,3 +82,4 @@ class Editor extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Forget.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Forget.php.tpl index b71df15f..2e78ac35 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Forget.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Forget.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -51,3 +45,4 @@ class Forget extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Password.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Password.php.tpl index 9bc1fda8..a995890c 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Password.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Password.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -72,3 +66,4 @@ class Password extends BaseMiddleware }); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/PostOwner.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/PostOwner.php.tpl index a384a766..5e155144 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/PostOwner.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/PostOwner.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -65,3 +59,4 @@ class PostOwner extends BaseMiddleware }); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Resend.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Resend.php.tpl index 1aea2fcd..4e512a6b 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Resend.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Resend.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -50,3 +44,4 @@ class Resend extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Reset.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Reset.php.tpl index ea159af3..757103c4 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Reset.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Reset.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -63,3 +57,4 @@ class Reset extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Signout.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Signout.php.tpl index 8cb9d2f8..59fbbb10 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Signout.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Signout.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -35,3 +29,4 @@ class Signout extends BaseMiddleware return $next($request); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Signup.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Signup.php.tpl index 93c25100..59eba972 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Signup.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Signup.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -59,3 +53,4 @@ class Signup extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Update.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Update.php.tpl index 49d5fe9e..a8b528ce 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Update.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Update.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -51,3 +45,4 @@ class Update extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Middlewares/Verify.php.tpl b/src/Module/Templates/DemoApi/src/Middlewares/Verify.php.tpl index 8e918db3..b7191113 100644 --- a/src/Module/Templates/DemoApi/src/Middlewares/Verify.php.tpl +++ b/src/Module/Templates/DemoApi/src/Middlewares/Verify.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -52,3 +46,4 @@ class Verify extends BaseMiddleware ]); } } + diff --git a/src/Module/Templates/DemoApi/src/Models/Comment.php.tpl b/src/Module/Templates/DemoApi/src/Models/Comment.php.tpl index 59c8419f..cb79ddf7 100644 --- a/src/Module/Templates/DemoApi/src/Models/Comment.php.tpl +++ b/src/Module/Templates/DemoApi/src/Models/Comment.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Models; @@ -63,3 +57,4 @@ class Comment extends DbModel ]; } } + diff --git a/src/Module/Templates/DemoApi/src/Models/Post.php.tpl b/src/Module/Templates/DemoApi/src/Models/Post.php.tpl index 96f5355d..3e6fb550 100644 --- a/src/Module/Templates/DemoApi/src/Models/Post.php.tpl +++ b/src/Module/Templates/DemoApi/src/Models/Post.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Models; @@ -64,3 +58,4 @@ class Post extends DbModel ]; } } + diff --git a/src/Module/Templates/DemoApi/src/Models/User.php.tpl b/src/Module/Templates/DemoApi/src/Models/User.php.tpl index bfd63f87..45733492 100644 --- a/src/Module/Templates/DemoApi/src/Models/User.php.tpl +++ b/src/Module/Templates/DemoApi/src/Models/User.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Models; @@ -60,3 +54,4 @@ class User extends DbModel 'otp_token', ]; } + diff --git a/src/Module/Templates/DemoApi/src/Services/AuthService.php.tpl b/src/Module/Templates/DemoApi/src/Services/AuthService.php.tpl index bfb81ea4..fc9b8990 100644 --- a/src/Module/Templates/DemoApi/src/Services/AuthService.php.tpl +++ b/src/Module/Templates/DemoApi/src/Services/AuthService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Services; @@ -163,3 +157,4 @@ class AuthService extends Service implements AuthServiceInterface } } } + diff --git a/src/Module/Templates/DemoApi/src/Services/CommentService.php.tpl b/src/Module/Templates/DemoApi/src/Services/CommentService.php.tpl index a052c91d..cdae8b4d 100644 --- a/src/Module/Templates/DemoApi/src/Services/CommentService.php.tpl +++ b/src/Module/Templates/DemoApi/src/Services/CommentService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Services; @@ -115,3 +109,4 @@ class CommentService extends Service return transform($comments, $this->transformer); } } + diff --git a/src/Module/Templates/DemoApi/src/Services/PostService.php.tpl b/src/Module/Templates/DemoApi/src/Services/PostService.php.tpl index e91b7086..0863e2f4 100644 --- a/src/Module/Templates/DemoApi/src/Services/PostService.php.tpl +++ b/src/Module/Templates/DemoApi/src/Services/PostService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Services; @@ -219,3 +213,4 @@ class PostService extends Service return transform($posts, $this->transformer); } } + diff --git a/src/Module/Templates/DemoApi/src/Transformers/CommentTransformer.php.tpl b/src/Module/Templates/DemoApi/src/Transformers/CommentTransformer.php.tpl index aac04bb9..3a8804a6 100644 --- a/src/Module/Templates/DemoApi/src/Transformers/CommentTransformer.php.tpl +++ b/src/Module/Templates/DemoApi/src/Transformers/CommentTransformer.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.9 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Transformers; @@ -36,3 +30,4 @@ class CommentTransformer implements TransformerInterface ]; } } + diff --git a/src/Module/Templates/DemoApi/src/Transformers/PostTransformer.php.tpl b/src/Module/Templates/DemoApi/src/Transformers/PostTransformer.php.tpl index 9bd00090..2ad2e173 100644 --- a/src/Module/Templates/DemoApi/src/Transformers/PostTransformer.php.tpl +++ b/src/Module/Templates/DemoApi/src/Transformers/PostTransformer.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.8 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Transformers; @@ -37,3 +31,4 @@ class PostTransformer implements TransformerInterface ]; } } + diff --git a/src/Module/Templates/DemoWeb/src/Controllers/AccountController.php.tpl b/src/Module/Templates/DemoWeb/src/Controllers/AccountController.php.tpl index 6f81ed3a..0406b5b3 100644 --- a/src/Module/Templates/DemoWeb/src/Controllers/AccountController.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Controllers/AccountController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -87,3 +81,4 @@ class AccountController extends BaseController return redirect(base_url(true) . '/' . current_lang() . '/account-settings#account_password'); } } + diff --git a/src/Module/Templates/DemoWeb/src/Controllers/AuthController.php.tpl b/src/Module/Templates/DemoWeb/src/Controllers/AuthController.php.tpl index 9fae0c52..4fdc9ac4 100644 --- a/src/Module/Templates/DemoWeb/src/Controllers/AuthController.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Controllers/AuthController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -195,3 +189,4 @@ class AuthController extends BaseController } } } + diff --git a/src/Module/Templates/DemoWeb/src/Controllers/BaseController.php.tpl b/src/Module/Templates/DemoWeb/src/Controllers/BaseController.php.tpl index 8e050817..d2c52440 100644 --- a/src/Module/Templates/DemoWeb/src/Controllers/BaseController.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Controllers/BaseController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -45,3 +39,4 @@ abstract class BaseController } } } + diff --git a/src/Module/Templates/DemoWeb/src/Controllers/CommentController.php.tpl b/src/Module/Templates/DemoWeb/src/Controllers/CommentController.php.tpl index 1d880bb4..e6705fa5 100644 --- a/src/Module/Templates/DemoWeb/src/Controllers/CommentController.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Controllers/CommentController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -57,3 +51,4 @@ class CommentController extends BaseController return redirect(get_referrer() ?? base_url()); } } + diff --git a/src/Module/Templates/DemoWeb/src/Controllers/PageController.php.tpl b/src/Module/Templates/DemoWeb/src/Controllers/PageController.php.tpl index 32154222..926cf89e 100644 --- a/src/Module/Templates/DemoWeb/src/Controllers/PageController.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Controllers/PageController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -55,3 +49,4 @@ class PageController extends BaseController return response()->html($this->view->render('pages/about', ['commands' => $commands])); } } + diff --git a/src/Module/Templates/DemoWeb/src/Controllers/PostController.php.tpl b/src/Module/Templates/DemoWeb/src/Controllers/PostController.php.tpl index 99a8406b..68cf9829 100644 --- a/src/Module/Templates/DemoWeb/src/Controllers/PostController.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Controllers/PostController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -103,3 +97,4 @@ class PostController extends BaseController return response()->html($this->view->render('post/single')); } } + diff --git a/src/Module/Templates/DemoWeb/src/Controllers/PostManagementController.php.tpl b/src/Module/Templates/DemoWeb/src/Controllers/PostManagementController.php.tpl index 908a4161..c38f1848 100644 --- a/src/Module/Templates/DemoWeb/src/Controllers/PostManagementController.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Controllers/PostManagementController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Controllers; @@ -178,3 +172,4 @@ class PostManagementController extends BaseController return redirect(base_url(true) . '/' . current_lang() . '/my-posts'); } } + diff --git a/src/Module/Templates/DemoWeb/src/DTOs/CommentDTO.php.tpl b/src/Module/Templates/DemoWeb/src/DTOs/CommentDTO.php.tpl index 72550e91..1d10ebf8 100644 --- a/src/Module/Templates/DemoWeb/src/DTOs/CommentDTO.php.tpl +++ b/src/Module/Templates/DemoWeb/src/DTOs/CommentDTO.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\DTOs; @@ -67,3 +61,4 @@ class CommentDTO ]; } } + diff --git a/src/Module/Templates/DemoWeb/src/DTOs/PostDTO.php.tpl b/src/Module/Templates/DemoWeb/src/DTOs/PostDTO.php.tpl index 0b84e9f2..a75027a3 100644 --- a/src/Module/Templates/DemoWeb/src/DTOs/PostDTO.php.tpl +++ b/src/Module/Templates/DemoWeb/src/DTOs/PostDTO.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\DTOs; @@ -84,3 +78,4 @@ class PostDTO }); } } + diff --git a/src/Module/Templates/DemoWeb/src/DTOs/UserDTO.php.tpl b/src/Module/Templates/DemoWeb/src/DTOs/UserDTO.php.tpl index 3b8b1feb..66ed5298 100644 --- a/src/Module/Templates/DemoWeb/src/DTOs/UserDTO.php.tpl +++ b/src/Module/Templates/DemoWeb/src/DTOs/UserDTO.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\DTOs; @@ -119,3 +113,4 @@ class UserDTO }); } } + diff --git a/src/Module/Templates/DemoWeb/src/Enums/Role.php.tpl b/src/Module/Templates/DemoWeb/src/Enums/Role.php.tpl index b14ef58e..db584019 100644 --- a/src/Module/Templates/DemoWeb/src/Enums/Role.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Enums/Role.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.9 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Enums; @@ -24,3 +18,4 @@ class Role const EDITOR = 'editor'; } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Activate.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Activate.php.tpl index ba0eb249..1d919b1a 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Activate.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Activate.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -63,3 +57,4 @@ class Activate extends BaseMiddleware return response()->html(partial('errors/404'), StatusCode::NOT_FOUND); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Auth.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Auth.php.tpl index 1c9926a6..df9b9273 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Auth.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Auth.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -34,3 +28,4 @@ class Auth extends Middleware return $next($request); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/BaseMiddleware.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/BaseMiddleware.php.tpl index 19f4dd36..14e9b103 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/BaseMiddleware.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/BaseMiddleware.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -63,3 +57,4 @@ abstract class BaseMiddleware extends Middleware return response(); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Comment.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Comment.php.tpl index d4e87a24..41df81cf 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Comment.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Comment.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -61,3 +55,4 @@ class Comment extends BaseMiddleware return redirectWith(get_referrer() ?? base_url(), $data); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/CommentOwner.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/CommentOwner.php.tpl index a5d314e9..999ba9da 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/CommentOwner.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/CommentOwner.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -65,3 +59,4 @@ class CommentOwner extends BaseMiddleware }); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Editor.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Editor.php.tpl index 474ce5bd..3aab61bc 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Editor.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Editor.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -97,3 +91,4 @@ class Editor extends BaseMiddleware return redirectWith(get_referrer() ?? base_url(), $data); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Forget.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Forget.php.tpl index ddccd9c9..3e95159f 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Forget.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Forget.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -64,3 +58,4 @@ class Forget extends BaseMiddleware return redirectWith(base_url(true) . '/' . current_lang() . '/forget', $data); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Guest.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Guest.php.tpl index d546c837..26ba7f2c 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Guest.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Guest.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -34,3 +28,4 @@ class Guest extends Middleware return $next($request); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Password.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Password.php.tpl index 304a4350..6ca23613 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Password.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Password.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -81,3 +75,4 @@ class Password extends BaseMiddleware }); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/PostOwner.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/PostOwner.php.tpl index 3539ede7..03170b56 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/PostOwner.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/PostOwner.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -74,3 +68,4 @@ class PostOwner extends BaseMiddleware }); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Resend.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Resend.php.tpl index 72b98563..2ac3866c 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Resend.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Resend.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -59,3 +53,4 @@ class Resend extends BaseMiddleware return redirect(base_url(true) . '/' . current_lang() . '/signin'); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Reset.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Reset.php.tpl index 9cce1a17..e943c500 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Reset.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Reset.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -82,3 +76,4 @@ class Reset extends BaseMiddleware return redirect(get_referrer() ?? base_url()); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Signup.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Signup.php.tpl index 421b7e59..842a9783 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Signup.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Signup.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -83,3 +77,4 @@ class Signup extends BaseMiddleware return redirectWith(base_url(true) . '/' . current_lang() . '/signup', $request->all()); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Update.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Update.php.tpl index 16016755..65a35c19 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Update.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Update.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -60,3 +54,4 @@ class Update extends BaseMiddleware return redirectWith(base_url(true) . '/' . current_lang() . '/account-settings#account_profile', $request->all()); } } + diff --git a/src/Module/Templates/DemoWeb/src/Middlewares/Verify.php.tpl b/src/Module/Templates/DemoWeb/src/Middlewares/Verify.php.tpl index 6092ec4d..69b64f11 100644 --- a/src/Module/Templates/DemoWeb/src/Middlewares/Verify.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Middlewares/Verify.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Middlewares; @@ -69,3 +63,4 @@ class Verify extends BaseMiddleware return redirectWith(base_url(true) . '/' . current_lang() . '/verify', $request->all()); } } + diff --git a/src/Module/Templates/DemoWeb/src/Models/Comment.php.tpl b/src/Module/Templates/DemoWeb/src/Models/Comment.php.tpl index 08c1277f..c6656433 100644 --- a/src/Module/Templates/DemoWeb/src/Models/Comment.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Models/Comment.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Models; @@ -63,3 +57,4 @@ class Comment extends DbModel ]; } } + diff --git a/src/Module/Templates/DemoWeb/src/Models/Post.php.tpl b/src/Module/Templates/DemoWeb/src/Models/Post.php.tpl index b8ad4490..408478c5 100644 --- a/src/Module/Templates/DemoWeb/src/Models/Post.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Models/Post.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Models; @@ -64,3 +58,4 @@ class Post extends DbModel ]; } } + diff --git a/src/Module/Templates/DemoWeb/src/Models/User.php.tpl b/src/Module/Templates/DemoWeb/src/Models/User.php.tpl index bfd63f87..45733492 100644 --- a/src/Module/Templates/DemoWeb/src/Models/User.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Models/User.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Models; @@ -60,3 +54,4 @@ class User extends DbModel 'otp_token', ]; } + diff --git a/src/Module/Templates/DemoWeb/src/Services/AuthService.php.tpl b/src/Module/Templates/DemoWeb/src/Services/AuthService.php.tpl index bfb81ea4..fc9b8990 100644 --- a/src/Module/Templates/DemoWeb/src/Services/AuthService.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Services/AuthService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Services; @@ -163,3 +157,4 @@ class AuthService extends Service implements AuthServiceInterface } } } + diff --git a/src/Module/Templates/DemoWeb/src/Services/CommandService.php.tpl b/src/Module/Templates/DemoWeb/src/Services/CommandService.php.tpl index a17a8356..40ec6c18 100644 --- a/src/Module/Templates/DemoWeb/src/Services/CommandService.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Services/CommandService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.9 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ @@ -44,3 +38,4 @@ class CommandService extends Service return array_merge($coreCommands, $appCommands); } } + diff --git a/src/Module/Templates/DemoWeb/src/Services/CommentService.php.tpl b/src/Module/Templates/DemoWeb/src/Services/CommentService.php.tpl index 212714cc..be47cde6 100644 --- a/src/Module/Templates/DemoWeb/src/Services/CommentService.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Services/CommentService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Services; @@ -116,3 +110,4 @@ class CommentService extends Service return transform($comments, $this->transformer); } } + diff --git a/src/Module/Templates/DemoWeb/src/Services/PostService.php.tpl b/src/Module/Templates/DemoWeb/src/Services/PostService.php.tpl index 5d0d9d45..49f4b0cb 100644 --- a/src/Module/Templates/DemoWeb/src/Services/PostService.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Services/PostService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Services; @@ -217,3 +211,4 @@ class PostService extends Service return transform($posts, $this->transformer); } } + diff --git a/src/Module/Templates/DemoWeb/src/Transformers/CommentTransformer.php.tpl b/src/Module/Templates/DemoWeb/src/Transformers/CommentTransformer.php.tpl index aac04bb9..3a8804a6 100644 --- a/src/Module/Templates/DemoWeb/src/Transformers/CommentTransformer.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Transformers/CommentTransformer.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.9 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Transformers; @@ -36,3 +30,4 @@ class CommentTransformer implements TransformerInterface ]; } } + diff --git a/src/Module/Templates/DemoWeb/src/Transformers/PostTransformer.php.tpl b/src/Module/Templates/DemoWeb/src/Transformers/PostTransformer.php.tpl index 11986029..2ad2e173 100644 --- a/src/Module/Templates/DemoWeb/src/Transformers/PostTransformer.php.tpl +++ b/src/Module/Templates/DemoWeb/src/Transformers/PostTransformer.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace {{MODULE_NAMESPACE}}\Transformers; @@ -37,3 +31,4 @@ class PostTransformer implements TransformerInterface ]; } } + diff --git a/src/Module/Templates/Toolkit/src/Controllers/BaseController.php.tpl b/src/Module/Templates/Toolkit/src/Controllers/BaseController.php.tpl index 48395a41..e11b39e9 100644 --- a/src/Module/Templates/Toolkit/src/Controllers/BaseController.php.tpl +++ b/src/Module/Templates/Toolkit/src/Controllers/BaseController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Controllers; @@ -54,3 +48,4 @@ class BaseController ]); } } + diff --git a/src/Module/Templates/Toolkit/src/Controllers/DashboardController.php.tpl b/src/Module/Templates/Toolkit/src/Controllers/DashboardController.php.tpl index 63f67601..82818752 100644 --- a/src/Module/Templates/Toolkit/src/Controllers/DashboardController.php.tpl +++ b/src/Module/Templates/Toolkit/src/Controllers/DashboardController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Controllers; @@ -46,3 +40,4 @@ class DashboardController extends BaseController return response()->html($this->view->render('pages/dashboard/index')); } } + diff --git a/src/Module/Templates/Toolkit/src/Controllers/DatabaseController.php.tpl b/src/Module/Templates/Toolkit/src/Controllers/DatabaseController.php.tpl index e07c4a25..3ca40002 100644 --- a/src/Module/Templates/Toolkit/src/Controllers/DatabaseController.php.tpl +++ b/src/Module/Templates/Toolkit/src/Controllers/DatabaseController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Controllers; @@ -105,3 +99,4 @@ class DatabaseController extends BaseController return redirect(base_url(true) . '/database/view?table=' . $tableName); } } + diff --git a/src/Module/Templates/Toolkit/src/Controllers/EmailsController.php.tpl b/src/Module/Templates/Toolkit/src/Controllers/EmailsController.php.tpl index 75aaa72c..0c75da0d 100644 --- a/src/Module/Templates/Toolkit/src/Controllers/EmailsController.php.tpl +++ b/src/Module/Templates/Toolkit/src/Controllers/EmailsController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Controllers; @@ -67,3 +61,4 @@ class EmailsController extends BaseController return redirect(base_url(true) . '/emails'); } } + diff --git a/src/Module/Templates/Toolkit/src/Controllers/LogsController.php.tpl b/src/Module/Templates/Toolkit/src/Controllers/LogsController.php.tpl index 8657c936..a5424e49 100644 --- a/src/Module/Templates/Toolkit/src/Controllers/LogsController.php.tpl +++ b/src/Module/Templates/Toolkit/src/Controllers/LogsController.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Controllers; @@ -68,3 +62,4 @@ class LogsController extends BaseController return response()->html($this->view->render('pages/logs/log')); } } + diff --git a/src/Module/Templates/Toolkit/src/Middlewares/BaseMiddleware.php.tpl b/src/Module/Templates/Toolkit/src/Middlewares/BaseMiddleware.php.tpl index 0741c778..39f0a0d3 100644 --- a/src/Module/Templates/Toolkit/src/Middlewares/BaseMiddleware.php.tpl +++ b/src/Module/Templates/Toolkit/src/Middlewares/BaseMiddleware.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Middlewares; @@ -59,3 +53,4 @@ abstract class BaseMiddleware extends Middleware */ abstract protected function respondWithError(Request $request, $message): Response; } + diff --git a/src/Module/Templates/Toolkit/src/Middlewares/BasicAuth.php.tpl b/src/Module/Templates/Toolkit/src/Middlewares/BasicAuth.php.tpl index 9c08e799..f94202a8 100644 --- a/src/Module/Templates/Toolkit/src/Middlewares/BasicAuth.php.tpl +++ b/src/Module/Templates/Toolkit/src/Middlewares/BasicAuth.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Middlewares; @@ -56,3 +50,4 @@ class BasicAuth extends Middleware ->html(partial('errors' . DS . '401'), 401); } } + diff --git a/src/Module/Templates/Toolkit/src/Middlewares/CreateTable.php.tpl b/src/Module/Templates/Toolkit/src/Middlewares/CreateTable.php.tpl index 8e49e419..ff7e0636 100644 --- a/src/Module/Templates/Toolkit/src/Middlewares/CreateTable.php.tpl +++ b/src/Module/Templates/Toolkit/src/Middlewares/CreateTable.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Middlewares; @@ -83,3 +77,4 @@ class CreateTable extends BaseMiddleware }); } } + diff --git a/src/Module/Templates/Toolkit/src/Services/DashboardService.php.tpl b/src/Module/Templates/Toolkit/src/Services/DashboardService.php.tpl index 58c8c648..8064e250 100644 --- a/src/Module/Templates/Toolkit/src/Services/DashboardService.php.tpl +++ b/src/Module/Templates/Toolkit/src/Services/DashboardService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Services; @@ -26,3 +20,4 @@ class DashboardService extends Service { } } + diff --git a/src/Module/Templates/Toolkit/src/Services/DatabaseService.php.tpl b/src/Module/Templates/Toolkit/src/Services/DatabaseService.php.tpl index f75dbd81..2b796c0a 100644 --- a/src/Module/Templates/Toolkit/src/Services/DatabaseService.php.tpl +++ b/src/Module/Templates/Toolkit/src/Services/DatabaseService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Services; @@ -157,3 +151,4 @@ class DatabaseService extends Service return $columns; } } + diff --git a/src/Module/Templates/Toolkit/src/Services/EmailService.php.tpl b/src/Module/Templates/Toolkit/src/Services/EmailService.php.tpl index b1c3d07a..033c0e9d 100644 --- a/src/Module/Templates/Toolkit/src/Services/EmailService.php.tpl +++ b/src/Module/Templates/Toolkit/src/Services/EmailService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Services; @@ -113,3 +107,4 @@ class EmailService extends Service ]); } } + diff --git a/src/Module/Templates/Toolkit/src/Services/LogsService.php.tpl b/src/Module/Templates/Toolkit/src/Services/LogsService.php.tpl index 47679c06..33ccc52b 100644 --- a/src/Module/Templates/Toolkit/src/Services/LogsService.php.tpl +++ b/src/Module/Templates/Toolkit/src/Services/LogsService.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Modules\Toolkit\Services; @@ -96,3 +90,4 @@ class LogsService extends Service ]); } } + diff --git a/src/Module/Templates/Toolkit/src/helpers/toolkit.php.tpl b/src/Module/Templates/Toolkit/src/helpers/toolkit.php.tpl index 31990c6e..257e9dd3 100644 --- a/src/Module/Templates/Toolkit/src/helpers/toolkit.php.tpl +++ b/src/Module/Templates/Toolkit/src/helpers/toolkit.php.tpl @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 2.9.8 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ const LEVEL_ATTRIBUTES = [ @@ -56,3 +50,4 @@ function getLevelClass(string $level): string { return LEVEL_ATTRIBUTES[strtolower($level)]['class']; } + diff --git a/src/Paginator/Adapters/ArrayPaginator.php b/src/Paginator/Adapters/ArrayPaginator.php index a7360733..3eb03262 100644 --- a/src/Paginator/Adapters/ArrayPaginator.php +++ b/src/Paginator/Adapters/ArrayPaginator.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Adapters; @@ -23,7 +17,6 @@ /** * Class ArrayPaginator - * @package Quantum\Paginator */ class ArrayPaginator implements PaginatorInterface { diff --git a/src/Paginator/Adapters/ModelPaginator.php b/src/Paginator/Adapters/ModelPaginator.php index 8008d8d6..408aae4d 100644 --- a/src/Paginator/Adapters/ModelPaginator.php +++ b/src/Paginator/Adapters/ModelPaginator.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Adapters; @@ -28,7 +22,6 @@ /** * Class ModelPaginator - * @package Quantum\Paginator */ class ModelPaginator implements PaginatorInterface { diff --git a/src/Paginator/Contracts/PaginatorInterface.php b/src/Paginator/Contracts/PaginatorInterface.php index 089b120a..ba936f09 100644 --- a/src/Paginator/Contracts/PaginatorInterface.php +++ b/src/Paginator/Contracts/PaginatorInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Contracts; /** * Paginator interface - * @package Quantum\Paginator */ interface PaginatorInterface { diff --git a/src/Paginator/Enums/ExceptionMessages.php b/src/Paginator/Enums/ExceptionMessages.php index dea73c0c..f876e2d1 100644 --- a/src/Paginator/Enums/ExceptionMessages.php +++ b/src/Paginator/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Paginator */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Paginator/Enums/Pagination.php b/src/Paginator/Enums/Pagination.php index 77b33edf..1ed40d4d 100644 --- a/src/Paginator/Enums/Pagination.php +++ b/src/Paginator/Enums/Pagination.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Enums; /** * Class Pagination - * @package Quantum\Paginator * @codeCoverageIgnore */ final class Pagination diff --git a/src/Paginator/Enums/PaginatorType.php b/src/Paginator/Enums/PaginatorType.php index 7ba7b28d..b59a1c26 100644 --- a/src/Paginator/Enums/PaginatorType.php +++ b/src/Paginator/Enums/PaginatorType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Enums; /** * Class PaginatorType - * @package Quantum\Paginator * @codeCoverageIgnore */ final class PaginatorType diff --git a/src/Paginator/Exceptions/PaginatorException.php b/src/Paginator/Exceptions/PaginatorException.php index 6d48d7d5..77f4c190 100644 --- a/src/Paginator/Exceptions/PaginatorException.php +++ b/src/Paginator/Exceptions/PaginatorException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Exceptions; @@ -21,7 +15,6 @@ /** * Class PaginatorException - * @package Quantum\Paginator */ class PaginatorException extends BaseException { diff --git a/src/Paginator/Factories/PaginatorFactory.php b/src/Paginator/Factories/PaginatorFactory.php index 6ffc6803..7cfa2003 100644 --- a/src/Paginator/Factories/PaginatorFactory.php +++ b/src/Paginator/Factories/PaginatorFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Factories; @@ -25,7 +19,6 @@ /** * Class PaginatorFactory - * @package Quantum\Paginator */ class PaginatorFactory { diff --git a/src/Paginator/Paginator.php b/src/Paginator/Paginator.php index ada05cdd..f25bc998 100644 --- a/src/Paginator/Paginator.php +++ b/src/Paginator/Paginator.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator; @@ -22,7 +16,6 @@ /** * Class Paginator - * @package Quantum\Paginator * @method mixed data() * @method mixed firstItem() * @method mixed lastItem() diff --git a/src/Paginator/Traits/PaginatorTrait.php b/src/Paginator/Traits/PaginatorTrait.php index 0feb592e..43c8ba24 100644 --- a/src/Paginator/Traits/PaginatorTrait.php +++ b/src/Paginator/Traits/PaginatorTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Paginator\Traits; @@ -25,7 +19,6 @@ /** * Trait PaginatorTrait - * @package Quantum\Paginator */ trait PaginatorTrait { diff --git a/src/RateLimit/Adapters/FileRateLimitAdapter.php b/src/RateLimit/Adapters/FileRateLimitAdapter.php index 0c3bfb33..b73483ed 100644 --- a/src/RateLimit/Adapters/FileRateLimitAdapter.php +++ b/src/RateLimit/Adapters/FileRateLimitAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit\Adapters; @@ -25,7 +19,6 @@ /** * Class FileRateLimitAdapter - * @package Quantum\RateLimit */ class FileRateLimitAdapter implements RateLimitAdapterInterface { diff --git a/src/RateLimit/Adapters/RedisRateLimitAdapter.php b/src/RateLimit/Adapters/RedisRateLimitAdapter.php index fd917f15..a7a197d3 100644 --- a/src/RateLimit/Adapters/RedisRateLimitAdapter.php +++ b/src/RateLimit/Adapters/RedisRateLimitAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit\Adapters; @@ -22,7 +16,6 @@ /** * Class RedisRateLimitAdapter - * @package Quantum\RateLimit */ class RedisRateLimitAdapter implements RateLimitAdapterInterface { diff --git a/src/RateLimit/Contracts/RateLimitAdapterInterface.php b/src/RateLimit/Contracts/RateLimitAdapterInterface.php index 8278f8e6..42b990de 100644 --- a/src/RateLimit/Contracts/RateLimitAdapterInterface.php +++ b/src/RateLimit/Contracts/RateLimitAdapterInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit\Contracts; /** * Interface RateLimitAdapterInterface - * @package Quantum\RateLimit */ interface RateLimitAdapterInterface { diff --git a/src/RateLimit/Enums/ExceptionMessages.php b/src/RateLimit/Enums/ExceptionMessages.php index 2eab711d..62793005 100644 --- a/src/RateLimit/Enums/ExceptionMessages.php +++ b/src/RateLimit/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\RateLimit */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/RateLimit/Enums/RateLimitType.php b/src/RateLimit/Enums/RateLimitType.php index 44a2ecea..874d1bf4 100644 --- a/src/RateLimit/Enums/RateLimitType.php +++ b/src/RateLimit/Enums/RateLimitType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit\Enums; /** * Class RateLimitType - * @package Quantum\RateLimit * @codeCoverageIgnore */ final class RateLimitType diff --git a/src/RateLimit/Exceptions/RateLimitException.php b/src/RateLimit/Exceptions/RateLimitException.php index 2a9afe70..b83764f8 100644 --- a/src/RateLimit/Exceptions/RateLimitException.php +++ b/src/RateLimit/Exceptions/RateLimitException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit\Exceptions; @@ -21,7 +15,6 @@ /** * Class RateLimitException - * @package Quantum\RateLimit */ class RateLimitException extends BaseException { diff --git a/src/RateLimit/Factories/RateLimiterFactory.php b/src/RateLimit/Factories/RateLimiterFactory.php index f414a7bd..7b27a0f9 100644 --- a/src/RateLimit/Factories/RateLimiterFactory.php +++ b/src/RateLimit/Factories/RateLimiterFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit\Factories; @@ -31,7 +25,6 @@ /** * Class RateLimiterFactory - * @package Quantum\RateLimit */ class RateLimiterFactory { diff --git a/src/RateLimit/RateLimitMiddleware.php b/src/RateLimit/RateLimitMiddleware.php index 8f19611a..7e463358 100644 --- a/src/RateLimit/RateLimitMiddleware.php +++ b/src/RateLimit/RateLimitMiddleware.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit; @@ -26,7 +20,6 @@ /** * Class RateLimitMiddleware - * @package Quantum\RateLimit */ class RateLimitMiddleware extends Middleware { diff --git a/src/RateLimit/RateLimiter.php b/src/RateLimit/RateLimiter.php index 122344cd..cebf36db 100644 --- a/src/RateLimit/RateLimiter.php +++ b/src/RateLimit/RateLimiter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\RateLimit; @@ -20,7 +14,6 @@ /** * Class RateLimiter - * @package Quantum\RateLimit */ class RateLimiter { diff --git a/src/Renderer/Adapters/HtmlAdapter.php b/src/Renderer/Adapters/HtmlAdapter.php index a7748fdf..53c7c34c 100644 --- a/src/Renderer/Adapters/HtmlAdapter.php +++ b/src/Renderer/Adapters/HtmlAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Renderer\Adapters; @@ -27,7 +21,6 @@ /** * Class HtmlAdapter - * @package Quantum\Renderer */ class HtmlAdapter implements TemplateRendererInterface { diff --git a/src/Renderer/Adapters/TwigAdapter.php b/src/Renderer/Adapters/TwigAdapter.php index c1b40938..a3f16d85 100644 --- a/src/Renderer/Adapters/TwigAdapter.php +++ b/src/Renderer/Adapters/TwigAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Renderer\Adapters; @@ -33,7 +27,6 @@ /** * Class TwigAdapter - * @package Quantum\Renderer */ class TwigAdapter implements TemplateRendererInterface { diff --git a/src/Renderer/Contracts/TemplateRendererInterface.php b/src/Renderer/Contracts/TemplateRendererInterface.php index b794997f..46798497 100644 --- a/src/Renderer/Contracts/TemplateRendererInterface.php +++ b/src/Renderer/Contracts/TemplateRendererInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Renderer\Contracts; /** * Interface TemplateRendererInterface - * @package Quantum\Renderer */ interface TemplateRendererInterface { diff --git a/src/Renderer/Enums/RendererType.php b/src/Renderer/Enums/RendererType.php index 5f68da54..ff21de4e 100644 --- a/src/Renderer/Enums/RendererType.php +++ b/src/Renderer/Enums/RendererType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Renderer\Enums; /** * Class RendererType - * @package Quantum\Renderer * @codeCoverageIgnore */ final class RendererType diff --git a/src/Renderer/Exceptions/RendererException.php b/src/Renderer/Exceptions/RendererException.php index d3a567a4..d451d7d9 100644 --- a/src/Renderer/Exceptions/RendererException.php +++ b/src/Renderer/Exceptions/RendererException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Renderer\Exceptions; @@ -20,7 +14,6 @@ /** * Class RendererException - * @package Quantum\Renderer * @codeCoverageIgnore */ class RendererException extends BaseException diff --git a/src/Renderer/Factories/RendererFactory.php b/src/Renderer/Factories/RendererFactory.php index ae63f01e..1d7b19a3 100644 --- a/src/Renderer/Factories/RendererFactory.php +++ b/src/Renderer/Factories/RendererFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Renderer\Factories; @@ -31,7 +25,6 @@ /** * Class RendererFactory - * @package Quantum\Renderer */ class RendererFactory { diff --git a/src/Renderer/Renderer.php b/src/Renderer/Renderer.php index d32c1d4c..3cbebd0b 100644 --- a/src/Renderer/Renderer.php +++ b/src/Renderer/Renderer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Renderer; @@ -22,7 +16,6 @@ /** * Class Renderer - * @package Quantum\Renderer * @method string render(string $view, array $params = []) */ class Renderer diff --git a/src/ResourceCache/Exceptions/ResourceCacheException.php b/src/ResourceCache/Exceptions/ResourceCacheException.php index 0f83d718..f93033bb 100644 --- a/src/ResourceCache/Exceptions/ResourceCacheException.php +++ b/src/ResourceCache/Exceptions/ResourceCacheException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\ResourceCache\Exceptions; @@ -20,7 +14,6 @@ /** * Class ResourceCacheException - * @package Quantum\ResourceCache * @codeCoverageIgnore */ class ResourceCacheException extends BaseException diff --git a/src/ResourceCache/ViewCache.php b/src/ResourceCache/ViewCache.php index 3a24bbf3..003ec01f 100644 --- a/src/ResourceCache/ViewCache.php +++ b/src/ResourceCache/ViewCache.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\ResourceCache; @@ -31,7 +25,6 @@ /** * ViewCache class - * @package Quantum\ResourceCache */ class ViewCache { diff --git a/src/Router/Enums/ExceptionMessages.php b/src/Router/Enums/ExceptionMessages.php index 6f1fb287..bf65bce3 100644 --- a/src/Router/Enums/ExceptionMessages.php +++ b/src/Router/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Router */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Router/Exceptions/RouteException.php b/src/Router/Exceptions/RouteException.php index b036902f..95bf8cf4 100644 --- a/src/Router/Exceptions/RouteException.php +++ b/src/Router/Exceptions/RouteException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router\Exceptions; @@ -21,7 +15,6 @@ /** * Class RouteException - * @package Quantum\Exceptions */ class RouteException extends BaseException { diff --git a/src/Router/Helpers/router.php b/src/Router/Helpers/router.php index bea6e9aa..4641832a 100644 --- a/src/Router/Helpers/router.php +++ b/src/Router/Helpers/router.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Di\Exceptions\DiException; diff --git a/src/Router/MatchedRoute.php b/src/Router/MatchedRoute.php index bf3309a4..1ba8a9df 100644 --- a/src/Router/MatchedRoute.php +++ b/src/Router/MatchedRoute.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router; @@ -19,7 +13,6 @@ /** * Class MatchedRoute * @internal Resolves an incoming request to a matched route. - * @package Quantum\Router */ final class MatchedRoute { diff --git a/src/Router/PatternCompiler.php b/src/Router/PatternCompiler.php index a029ae5c..eae13184 100644 --- a/src/Router/PatternCompiler.php +++ b/src/Router/PatternCompiler.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router; @@ -21,7 +15,6 @@ /** * Class PatternCompiler * @internal Compiles and matches route patterns against request URIs. - * @package Quantum\Router */ class PatternCompiler { diff --git a/src/Router/Route.php b/src/Router/Route.php index 4e9b99db..166ca8af 100644 --- a/src/Router/Route.php +++ b/src/Router/Route.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router; @@ -23,7 +17,6 @@ /** * Class Route * @internal Framework routing descriptor. - * @package Quantum\Router */ final class Route { diff --git a/src/Router/RouteBuilder.php b/src/Router/RouteBuilder.php index 5b2d7201..3ff83cd5 100644 --- a/src/Router/RouteBuilder.php +++ b/src/Router/RouteBuilder.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router; @@ -22,7 +16,6 @@ /** * Class RouteBuilder * @internal Fluent DSL interpreter and route composition engine. - * @package Quantum\Router */ final class RouteBuilder { diff --git a/src/Router/RouteCollection.php b/src/Router/RouteCollection.php index a37f09bd..c1dc040c 100644 --- a/src/Router/RouteCollection.php +++ b/src/Router/RouteCollection.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router; @@ -19,7 +13,6 @@ /** * Class RouteCollection * @internal Internal collection of Route descriptors. - * @package Quantum\Router */ final class RouteCollection { diff --git a/src/Router/RouteDispatcher.php b/src/Router/RouteDispatcher.php index e2554b74..7068439f 100644 --- a/src/Router/RouteDispatcher.php +++ b/src/Router/RouteDispatcher.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router; @@ -28,7 +22,6 @@ /** * Class RouteDispatcher - * @package Quantum\Router */ final class RouteDispatcher { diff --git a/src/Router/RouteFinder.php b/src/Router/RouteFinder.php index 3f97aca4..90341305 100644 --- a/src/Router/RouteFinder.php +++ b/src/Router/RouteFinder.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Router; @@ -21,7 +15,6 @@ /** * Class RouteFinder * @internal Resolves an incoming request to a matched route. - * @package Quantum\Router */ final class RouteFinder { diff --git a/src/Service/Exceptions/ServiceException.php b/src/Service/Exceptions/ServiceException.php index 937c3dda..e9b193ff 100644 --- a/src/Service/Exceptions/ServiceException.php +++ b/src/Service/Exceptions/ServiceException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Service\Exceptions; @@ -20,7 +14,6 @@ /** * Class ServiceException - * @package Quantum\Service * @codeCoverageIgnore */ class ServiceException extends BaseException diff --git a/src/Service/Factories/ServiceFactory.php b/src/Service/Factories/ServiceFactory.php index 1eaae47e..a9b3ad3b 100644 --- a/src/Service/Factories/ServiceFactory.php +++ b/src/Service/Factories/ServiceFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Service\Factories; @@ -25,7 +19,6 @@ /** * Class ServiceFactory - * @package Quantum\Service */ class ServiceFactory { diff --git a/src/Service/Helpers/service.php b/src/Service/Helpers/service.php index 73b91bc7..a8085bf2 100644 --- a/src/Service/Helpers/service.php +++ b/src/Service/Helpers/service.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Service\Exceptions\ServiceException; diff --git a/src/Service/Service.php b/src/Service/Service.php index 22ab517a..076d9f89 100644 --- a/src/Service/Service.php +++ b/src/Service/Service.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Service; @@ -21,7 +15,6 @@ /** * Class Service - * @package Quantum\Service */ abstract class Service { diff --git a/src/Session/Adapters/Database/DatabaseHandler.php b/src/Session/Adapters/Database/DatabaseHandler.php index 52e8e03d..f1e5b776 100644 --- a/src/Session/Adapters/Database/DatabaseHandler.php +++ b/src/Session/Adapters/Database/DatabaseHandler.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Adapters\Database; @@ -21,7 +15,6 @@ /** * Class DatabaseHandler - * @package Quantum\Session */ class DatabaseHandler implements SessionHandlerInterface { diff --git a/src/Session/Adapters/Database/DatabaseSessionAdapter.php b/src/Session/Adapters/Database/DatabaseSessionAdapter.php index 1f57ec4b..598cbd13 100644 --- a/src/Session/Adapters/Database/DatabaseSessionAdapter.php +++ b/src/Session/Adapters/Database/DatabaseSessionAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Adapters\Database; @@ -27,7 +21,6 @@ /** * Class Session - * @package Quantum\Session */ class DatabaseSessionAdapter implements SessionStorageInterface { diff --git a/src/Session/Adapters/Native/NativeSessionAdapter.php b/src/Session/Adapters/Native/NativeSessionAdapter.php index 9a0bff71..f151cdc2 100644 --- a/src/Session/Adapters/Native/NativeSessionAdapter.php +++ b/src/Session/Adapters/Native/NativeSessionAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Adapters\Native; @@ -22,7 +16,6 @@ /** * Class Session - * @package Quantum\Session */ class NativeSessionAdapter implements SessionStorageInterface { diff --git a/src/Session/Contracts/SessionStorageInterface.php b/src/Session/Contracts/SessionStorageInterface.php index 6d42167c..452573cc 100644 --- a/src/Session/Contracts/SessionStorageInterface.php +++ b/src/Session/Contracts/SessionStorageInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Contracts; /** * Interface SessionStorageInterface - * @package Quantum\Session */ interface SessionStorageInterface { diff --git a/src/Session/Enums/ExceptionMessages.php b/src/Session/Enums/ExceptionMessages.php index 12edf59f..fcbd62ed 100644 --- a/src/Session/Enums/ExceptionMessages.php +++ b/src/Session/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Session */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Session/Enums/SessionType.php b/src/Session/Enums/SessionType.php index 84a47b09..4bc58d2c 100644 --- a/src/Session/Enums/SessionType.php +++ b/src/Session/Enums/SessionType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Enums; /** * Class SessionType - * @package Quantum\Session * @codeCoverageIgnore */ final class SessionType diff --git a/src/Session/Exceptions/SessionException.php b/src/Session/Exceptions/SessionException.php index 18282c82..ceb346c6 100644 --- a/src/Session/Exceptions/SessionException.php +++ b/src/Session/Exceptions/SessionException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Exceptions; @@ -21,7 +15,6 @@ /** * Class SessionException - * @package Quantum\Session */ class SessionException extends BaseException { diff --git a/src/Session/Factories/SessionFactory.php b/src/Session/Factories/SessionFactory.php index d2460aa2..010fac09 100644 --- a/src/Session/Factories/SessionFactory.php +++ b/src/Session/Factories/SessionFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Factories; @@ -31,7 +25,6 @@ /** * Class SessionFactory - * @package Quantum\Session */ class SessionFactory { diff --git a/src/Session/Helpers/session.php b/src/Session/Helpers/session.php index 0b90323a..b33e083b 100644 --- a/src/Session/Helpers/session.php +++ b/src/Session/Helpers/session.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Session\Factories\SessionFactory; diff --git a/src/Session/Session.php b/src/Session/Session.php index 1519ab36..526da03d 100644 --- a/src/Session/Session.php +++ b/src/Session/Session.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session; @@ -22,7 +16,6 @@ /** * Class Session - * @package Quantum\Session * @method array all() * @method bool has(string $key) * @method mixed|null get(string $key) diff --git a/src/Session/Traits/SessionTrait.php b/src/Session/Traits/SessionTrait.php index d00ce5c2..30d509e9 100644 --- a/src/Session/Traits/SessionTrait.php +++ b/src/Session/Traits/SessionTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Session\Traits; @@ -24,7 +18,6 @@ /** * Traits SessionTrait - * @package Quantum\Session */ trait SessionTrait { diff --git a/src/Storage/Adapters/Dropbox/DropboxApp.php b/src/Storage/Adapters/Dropbox/DropboxApp.php index 04ed483e..e50c59e7 100644 --- a/src/Storage/Adapters/Dropbox/DropboxApp.php +++ b/src/Storage/Adapters/Dropbox/DropboxApp.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Adapters\Dropbox; @@ -29,7 +23,6 @@ /** * Class DropboxApp - * @package Quantum\Storage */ class DropboxApp implements CloudAppInterface { diff --git a/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php b/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php index b3e918b4..e2816d96 100644 --- a/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php +++ b/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Adapters\Dropbox; @@ -21,7 +15,6 @@ /** * Class DropboxFileSystemAdapter - * @package Quantum\Storage */ class DropboxFileSystemAdapter implements FilesystemAdapterInterface { diff --git a/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php b/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php index 05a5f247..b6427cc0 100644 --- a/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php +++ b/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Adapters\GoogleDrive; @@ -27,7 +21,6 @@ /** * Class GoogleDriveApp - * @package Quantum\Storage */ class GoogleDriveApp implements CloudAppInterface { diff --git a/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php b/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php index 1c7e1334..ed7807fa 100644 --- a/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php +++ b/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Adapters\GoogleDrive; @@ -21,7 +15,6 @@ /** * Class GoogleDriveFileSystemAdapter - * @package Quantum\Storage */ class GoogleDriveFileSystemAdapter implements FilesystemAdapterInterface { diff --git a/src/Storage/Adapters/Local/LocalFileSystemAdapter.php b/src/Storage/Adapters/Local/LocalFileSystemAdapter.php index 4fc2a34d..3e3921e6 100644 --- a/src/Storage/Adapters/Local/LocalFileSystemAdapter.php +++ b/src/Storage/Adapters/Local/LocalFileSystemAdapter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Adapters\Local; @@ -21,7 +15,6 @@ /** * Class LocalFileSystemAdapter - * @package Quantum\Storage */ class LocalFileSystemAdapter implements LocalFilesystemAdapterInterface { diff --git a/src/Storage/Contracts/CloudAppInterface.php b/src/Storage/Contracts/CloudAppInterface.php index 2a513d3b..fde71b08 100644 --- a/src/Storage/Contracts/CloudAppInterface.php +++ b/src/Storage/Contracts/CloudAppInterface.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Contracts; @@ -20,7 +14,6 @@ /** * Interface CloudAppInterface - * @package Quantum\Storage */ interface CloudAppInterface { diff --git a/src/Storage/Contracts/FilesystemAdapterInterface.php b/src/Storage/Contracts/FilesystemAdapterInterface.php index 8442245b..01a2cd25 100644 --- a/src/Storage/Contracts/FilesystemAdapterInterface.php +++ b/src/Storage/Contracts/FilesystemAdapterInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Contracts; /** * Interface FilesystemAdapterInterface - * @package Quantum\Storage */ interface FilesystemAdapterInterface { diff --git a/src/Storage/Contracts/LocalFilesystemAdapterInterface.php b/src/Storage/Contracts/LocalFilesystemAdapterInterface.php index 8a4016ae..3430ce8a 100644 --- a/src/Storage/Contracts/LocalFilesystemAdapterInterface.php +++ b/src/Storage/Contracts/LocalFilesystemAdapterInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Contracts; /** * Interface LocalFilesystemAdapterInterface - * @package Quantum\Storage */ interface LocalFilesystemAdapterInterface extends FilesystemAdapterInterface { diff --git a/src/Storage/Contracts/TokenServiceInterface.php b/src/Storage/Contracts/TokenServiceInterface.php index 57533b28..9dbd3837 100644 --- a/src/Storage/Contracts/TokenServiceInterface.php +++ b/src/Storage/Contracts/TokenServiceInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Contracts; /** * Interface TokenServiceInterface - * @package Quantum\Storage */ interface TokenServiceInterface { diff --git a/src/Storage/Enums/ExceptionMessages.php b/src/Storage/Enums/ExceptionMessages.php index d4c3aa26..0a5a6ddb 100644 --- a/src/Storage/Enums/ExceptionMessages.php +++ b/src/Storage/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\Session */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Storage/Enums/FileSystemType.php b/src/Storage/Enums/FileSystemType.php index fb99cd18..7ded5f64 100644 --- a/src/Storage/Enums/FileSystemType.php +++ b/src/Storage/Enums/FileSystemType.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Enums; /** * Class FileSystemType - * @package Quantum\Storage * @codeCoverageIgnore */ final class FileSystemType diff --git a/src/Storage/Exceptions/FileSystemException.php b/src/Storage/Exceptions/FileSystemException.php index 18ff24f9..dd524b8e 100644 --- a/src/Storage/Exceptions/FileSystemException.php +++ b/src/Storage/Exceptions/FileSystemException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Exceptions; @@ -21,7 +15,6 @@ /** * Class FileSystemException - * @package Quantum\Storage */ class FileSystemException extends BaseException { diff --git a/src/Storage/Exceptions/FileUploadException.php b/src/Storage/Exceptions/FileUploadException.php index 4f748b68..a27c48de 100644 --- a/src/Storage/Exceptions/FileUploadException.php +++ b/src/Storage/Exceptions/FileUploadException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Exceptions; @@ -22,7 +16,6 @@ /** * Class FileUploadException - * @package Quantum\Storage */ class FileUploadException extends BaseException { diff --git a/src/Storage/Factories/FileSystemFactory.php b/src/Storage/Factories/FileSystemFactory.php index d05dda6f..0823392a 100644 --- a/src/Storage/Factories/FileSystemFactory.php +++ b/src/Storage/Factories/FileSystemFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Factories; @@ -39,7 +33,6 @@ /** * Class FileSystemFactory - * @package Quantum\Storage */ class FileSystemFactory { diff --git a/src/Storage/FileSystem.php b/src/Storage/FileSystem.php index 6cd78578..a482c73d 100644 --- a/src/Storage/FileSystem.php +++ b/src/Storage/FileSystem.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage; @@ -22,7 +16,6 @@ /** * Class FileSystem - * @package Quantum\Storage * @method bool makeDirectory(string $dirname, ?string $parentId = null) * @method bool removeDirectory(string $dirname) * @method string|false get(string $filename) diff --git a/src/Storage/Helpers/fs.php b/src/Storage/Helpers/fs.php index cf9c2f59..e96469ba 100644 --- a/src/Storage/Helpers/fs.php +++ b/src/Storage/Helpers/fs.php @@ -2,14 +2,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Storage\Factories\FileSystemFactory; diff --git a/src/Storage/Traits/CloudAppTrait.php b/src/Storage/Traits/CloudAppTrait.php index 7b520d8f..b6fed4e9 100644 --- a/src/Storage/Traits/CloudAppTrait.php +++ b/src/Storage/Traits/CloudAppTrait.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Traits; @@ -22,7 +16,6 @@ /** * Trait CloudAppTrait - * @package Quantum\Storage */ trait CloudAppTrait { diff --git a/src/Storage/UploadedFile.php b/src/Storage/UploadedFile.php index 728e9246..0b5ae01b 100644 --- a/src/Storage/UploadedFile.php +++ b/src/Storage/UploadedFile.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage; @@ -37,7 +31,6 @@ /** * Class File - * @package Quantum\Storage */ class UploadedFile extends SplFileInfo { diff --git a/src/Storage/Uploads/UploadConfigProvider.php b/src/Storage/Uploads/UploadConfigProvider.php index d3e43787..1ff1ab78 100644 --- a/src/Storage/Uploads/UploadConfigProvider.php +++ b/src/Storage/Uploads/UploadConfigProvider.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Uploads; diff --git a/src/Storage/Uploads/UploadPolicy.php b/src/Storage/Uploads/UploadPolicy.php index 59c81f6e..ec4567a3 100644 --- a/src/Storage/Uploads/UploadPolicy.php +++ b/src/Storage/Uploads/UploadPolicy.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Uploads; diff --git a/src/Storage/Uploads/UploadStorage.php b/src/Storage/Uploads/UploadStorage.php index bac52b2f..851037aa 100644 --- a/src/Storage/Uploads/UploadStorage.php +++ b/src/Storage/Uploads/UploadStorage.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Storage\Uploads; diff --git a/src/Tracer/ErrorHandler.php b/src/Tracer/ErrorHandler.php index 5cee7f93..8151503a 100644 --- a/src/Tracer/ErrorHandler.php +++ b/src/Tracer/ErrorHandler.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Tracer; @@ -31,7 +25,6 @@ /** * Class ErrorHandler - * @package Quantum\Tracer */ class ErrorHandler { diff --git a/src/Tracer/ExceptionSeverityResolver.php b/src/Tracer/ExceptionSeverityResolver.php index 4bdb98d1..187d8767 100644 --- a/src/Tracer/ExceptionSeverityResolver.php +++ b/src/Tracer/ExceptionSeverityResolver.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Tracer; diff --git a/src/Tracer/StackTraceFormatter.php b/src/Tracer/StackTraceFormatter.php index 85e38ffa..10730a3b 100644 --- a/src/Tracer/StackTraceFormatter.php +++ b/src/Tracer/StackTraceFormatter.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Tracer; diff --git a/src/Tracer/WebExceptionRenderer.php b/src/Tracer/WebExceptionRenderer.php index 4148fdaf..fa0dec68 100644 --- a/src/Tracer/WebExceptionRenderer.php +++ b/src/Tracer/WebExceptionRenderer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Tracer; diff --git a/src/Transformer/Contracts/TransformerInterface.php b/src/Transformer/Contracts/TransformerInterface.php index c114b402..08952415 100644 --- a/src/Transformer/Contracts/TransformerInterface.php +++ b/src/Transformer/Contracts/TransformerInterface.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Transformer\Contracts; /** * Interface TransformerInterface - * @package Quantum\Transformer */ interface TransformerInterface { diff --git a/src/Transformer/Helpers/transformer.php b/src/Transformer/Helpers/transformer.php index 216387f5..51efa26e 100644 --- a/src/Transformer/Helpers/transformer.php +++ b/src/Transformer/Helpers/transformer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use Quantum\Transformer\Contracts\TransformerInterface; diff --git a/src/Transformer/Transformer.php b/src/Transformer/Transformer.php index b7188cc3..5aa1f211 100644 --- a/src/Transformer/Transformer.php +++ b/src/Transformer/Transformer.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Transformer; @@ -20,7 +14,6 @@ /** * Class TransformerManager - * @package Quantum\Transformer */ class Transformer { diff --git a/src/Validation/Rule.php b/src/Validation/Rule.php index 6ac141f8..656d1ad3 100644 --- a/src/Validation/Rule.php +++ b/src/Validation/Rule.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation; /** * Rule class - * @package Quantum * @category Libraries * @method static bool required() * @method static bool email() diff --git a/src/Validation/Traits/File.php b/src/Validation/Traits/File.php index ec62db8b..8078c57c 100644 --- a/src/Validation/Traits/File.php +++ b/src/Validation/Traits/File.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation\Traits; @@ -21,7 +15,6 @@ /** * Trait File - * @package Quantum\Validation\Rules */ trait File { diff --git a/src/Validation/Traits/General.php b/src/Validation/Traits/General.php index 1e7d9c1d..8093fcff 100644 --- a/src/Validation/Traits/General.php +++ b/src/Validation/Traits/General.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation\Traits; @@ -28,7 +22,6 @@ /** * Trait General - * @package Quantum\Validation */ trait General { diff --git a/src/Validation/Traits/Length.php b/src/Validation/Traits/Length.php index dfdfd758..b080e3ea 100644 --- a/src/Validation/Traits/Length.php +++ b/src/Validation/Traits/Length.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation\Traits; /** * Trait Length - * @package Quantum\Validation\Rules */ trait Length { diff --git a/src/Validation/Traits/Lists.php b/src/Validation/Traits/Lists.php index 63d6c24c..e4ab670f 100644 --- a/src/Validation/Traits/Lists.php +++ b/src/Validation/Traits/Lists.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation\Traits; /** * Trait Lists - * @package Quantum\Validation\Rules */ trait Lists { diff --git a/src/Validation/Traits/Resource.php b/src/Validation/Traits/Resource.php index f69d1caa..7bbf7b40 100644 --- a/src/Validation/Traits/Resource.php +++ b/src/Validation/Traits/Resource.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation\Traits; /** * Trait Resource - * @package Quantum\Validation\Rules */ trait Resource { diff --git a/src/Validation/Traits/Type.php b/src/Validation/Traits/Type.php index 1ca2e873..15dbf7a2 100644 --- a/src/Validation/Traits/Type.php +++ b/src/Validation/Traits/Type.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation\Traits; /** * Trait Type - * @package Quantum\Validation\Rules */ trait Type { diff --git a/src/Validation/Validator.php b/src/Validation/Validator.php index 9cc5af96..e081ed1f 100644 --- a/src/Validation/Validator.php +++ b/src/Validation/Validator.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\Validation; @@ -33,7 +27,6 @@ /** * Class Validator - * @package Quantum\Validation */ class Validator { diff --git a/src/View/Enums/ExceptionMessages.php b/src/View/Enums/ExceptionMessages.php index fd4a96d7..70e6bc35 100644 --- a/src/View/Enums/ExceptionMessages.php +++ b/src/View/Enums/ExceptionMessages.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\View\Enums; @@ -20,7 +14,6 @@ /** * Class ExceptionMessages - * @package Quantum\View */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/View/Exceptions/ViewException.php b/src/View/Exceptions/ViewException.php index f8a4ed61..7e3c25ca 100644 --- a/src/View/Exceptions/ViewException.php +++ b/src/View/Exceptions/ViewException.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\View\Exceptions; @@ -21,7 +15,6 @@ /** * Class ViewException - * @package Quantum\View */ class ViewException extends BaseException { diff --git a/src/View/Factories/ViewFactory.php b/src/View/Factories/ViewFactory.php index 2d064b9f..3f7cb9dc 100644 --- a/src/View/Factories/ViewFactory.php +++ b/src/View/Factories/ViewFactory.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\View\Factories; @@ -27,7 +21,6 @@ /** * Class ViewFactory - * @package Quantum\View * @mixin View */ class ViewFactory diff --git a/src/View/Helpers/view.php b/src/View/Helpers/view.php index 829b8df7..955b03f9 100644 --- a/src/View/Helpers/view.php +++ b/src/View/Helpers/view.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ use League\CommonMark\Exception\CommonMarkException; diff --git a/src/View/RawParam.php b/src/View/RawParam.php index 5a1be9c6..9186e020 100644 --- a/src/View/RawParam.php +++ b/src/View/RawParam.php @@ -4,21 +4,14 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\View; /** * Class RawParam - * @package Quantum\View */ class RawParam { diff --git a/src/View/View.php b/src/View/View.php index 94399cda..553a0e20 100644 --- a/src/View/View.php +++ b/src/View/View.php @@ -4,14 +4,8 @@ /** * Quantum PHP Framework - * - * An open source software development framework for PHP - * - * @package Quantum - * @author Arman Ag. - * @copyright Copyright (c) 2018 Softberg LLC (https://softberg.org) - * @link https://quantumphp.io/ - * @since 3.0.0 + * An open-source software development framework for PHP + * @link https://quantumphp.io */ namespace Quantum\View; @@ -32,7 +26,6 @@ /** * Class View - * @package Quantum\View */ class View { diff --git a/tests/Unit/Console/Commands/CronRunCommandTest.php b/tests/Unit/Console/Commands/CronRunCommandTest.php index 97c95727..4d427cce 100644 --- a/tests/Unit/Console/Commands/CronRunCommandTest.php +++ b/tests/Unit/Console/Commands/CronRunCommandTest.php @@ -9,7 +9,6 @@ /** * Class CronRunCommandTest - * @package Quantum\Tests\Unit\Console\Commands */ class CronRunCommandTest extends AppTestCase { diff --git a/tests/Unit/Cron/CronLockTest.php b/tests/Unit/Cron/CronLockTest.php index 3d8a56d0..414922b5 100644 --- a/tests/Unit/Cron/CronLockTest.php +++ b/tests/Unit/Cron/CronLockTest.php @@ -8,7 +8,6 @@ /** * Class CronLockTest - * @package Quantum\Tests\Unit\Cron */ class CronLockTest extends AppTestCase { diff --git a/tests/Unit/Cron/CronManagerTest.php b/tests/Unit/Cron/CronManagerTest.php index fe179597..45bfe8c1 100644 --- a/tests/Unit/Cron/CronManagerTest.php +++ b/tests/Unit/Cron/CronManagerTest.php @@ -8,7 +8,6 @@ /** * Class CronManagerTest - * @package Quantum\Tests\Unit\Cron */ class CronManagerTest extends AppTestCase { diff --git a/tests/Unit/Cron/CronTaskTest.php b/tests/Unit/Cron/CronTaskTest.php index 80e5f8b6..1ba02527 100644 --- a/tests/Unit/Cron/CronTaskTest.php +++ b/tests/Unit/Cron/CronTaskTest.php @@ -8,7 +8,6 @@ /** * Class CronTaskTest - * @package Quantum\Tests\Unit\Cron */ class CronTaskTest extends AppTestCase { diff --git a/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.lock b/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.lock new file mode 100644 index 00000000..e69de29b diff --git a/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate b/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate new file mode 100644 index 00000000..ec8a4406 --- /dev/null +++ b/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate @@ -0,0 +1 @@ +{"count":1,"reset_at":1782372991} \ No newline at end of file From 65d33b88546035e0bdc79941d7870921aa6c99e1 Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Fri, 26 Jun 2026 18:18:12 +0400 Subject: [PATCH 5/9] [#532] Update PHP 8 baseline docs and package metadata --- CHANGELOG.md | 12 ++++++++++++ CONTRIBUTING.md | 12 +++++++++--- composer.json | 4 ++++ 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21865e01..eddcf154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [Unreleased] + +### Changed +- **BREAKING:** Raised the minimum supported PHP version from `7.4` to `8.0` (#532) +- Updated CI coverage to test PHP `8.0`, `8.1`, and `8.2` (#532) +- Raised the static analysis baseline to PHPStan level `8` with PHP `8.0` target settings (#532) +- Kept Rector aligned to the PHP 8 baseline and applied bounded PHP 8-safe modernization updates (#532) +- Simplified the standard framework file banner across core sources, templates, and affected tests (#532) + +### Notes +- OpenAPI metadata remains on Doctrine-style annotations for now because the currently used `swagger-php` attribute scanning path requires PHP `8.1+`; `doctrine/annotations` is intentionally retained on the PHP `8.0` baseline (#532) + ## [3.0.0] - 2026-05-28 Upgrade guide: https://github.com/softberg/quantum-php-docs/blob/master/v3.0/upgrade-guide.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c1a4c34a..2b0d6a26 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -73,7 +73,13 @@ composer phpstan composer cs:check ``` -6. Commit and push your branch: +6. Run Rector dry-run + +```bash +composer rector:check +``` + +7. Commit and push your branch: ```bash git commit -m "[#123] Add SoftDeletes trait for models" @@ -105,13 +111,13 @@ Notes: ## Testing Quantum uses **PHPUnit** for tests. If you add new features, make sure they include unit tests — especially for database or HTTP-related components. For in-memory testing, use SQLite in-memory databases (for example, in tests using IdiormDbal). -All contributions must also pass **PHPStan** (static analysis) and **PHP-CS-Fixer** (code style) checks. +All contributions must also pass **PHPStan** (static analysis), **PHP-CS-Fixer** (code style), and **Rector** dry-run checks. --- ## Code Guidelines -- PHP 7.4+ compatibility is required. +- PHP 8.0+ compatibility is required. - Keep class responsibilities clear — avoid bloated classes. - Follow the existing directory structure - Always document public methods. diff --git a/composer.json b/composer.json index a2b2c9f5..424abeff 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,10 @@ { "name": "Arman Ag", "email": "arman@quantumphp.io" + }, + { + "name": "Contributors", + "homepage": "https://github.com/quantum-php/framework/contributors" } ], "require": { From 839f329349658e3f2670f8b091230db4f20b999b Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Fri, 26 Jun 2026 18:50:03 +0400 Subject: [PATCH 6/9] [#532] Fix PHPStan callable type issues --- src/Auth/Adapters/JwtAuthAdapter.php | 5 +++-- src/Router/RouteDispatcher.php | 10 +++++++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/Auth/Adapters/JwtAuthAdapter.php b/src/Auth/Adapters/JwtAuthAdapter.php index f3e87c5d..6e258896 100644 --- a/src/Auth/Adapters/JwtAuthAdapter.php +++ b/src/Auth/Adapters/JwtAuthAdapter.php @@ -50,9 +50,10 @@ public function __construct(AuthServiceInterface $authService, Mailer $mailer, H /** * @inheritDoc + * @return string|array * @throws AuthException|DiException|JwtException|ReflectionException|Exception */ - public function signin(string $username, string $password) + public function signin(string $username, string $password): string|array { $user = $this->getUser($username, $password); @@ -98,7 +99,7 @@ public function user(): ?User { try { return $this->getUserFromAccessToken(); - } catch (Exception $e) { + } catch (Exception) { return $this->getUserFromRefreshToken(); } } diff --git a/src/Router/RouteDispatcher.php b/src/Router/RouteDispatcher.php index 7068439f..0e12c890 100644 --- a/src/Router/RouteDispatcher.php +++ b/src/Router/RouteDispatcher.php @@ -89,13 +89,17 @@ private function resolveControllerCallable(Route $route): array /** * Invoke a callable with parameters resolved via DI autowiring. - * @param callable|array{0: object, 1: string} $callable + * @param Closure|array{0: object, 1: string} $callable * @param array $params * @return mixed + * @throws DiException */ - private function invoke($callable, array $params) + private function invoke(Closure|array $callable, array $params) { - /** @var callable $callable */ + if (!is_callable($callable)) { + throw DiException::invalidCallable(); + } + $closure = Closure::fromCallable($callable); return $closure(...Di::autowire($closure, $params)); From a144235d07502435b2441524f6f7d01161064e74 Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Sun, 28 Jun 2026 22:12:10 +0400 Subject: [PATCH 7/9] [#532] Restore package annotations and ignore test cache files --- .gitignore | 4 +++- src/App/Adapters/AppAdapter.php | 1 + src/App/Adapters/ConsoleAppAdapter.php | 1 + src/App/Adapters/WebAppAdapter.php | 1 + src/App/App.php | 1 + src/App/AppContext.php | 1 + src/App/BootPipeline.php | 1 + src/App/Contracts/AppInterface.php | 1 + src/App/Contracts/BootStageInterface.php | 1 + src/App/Enums/AppType.php | 1 + src/App/Enums/ExceptionMessages.php | 1 + src/App/Enums/ExitCode.php | 1 + src/App/Enums/ReservedKeys.php | 1 + src/App/Exceptions/AppException.php | 1 + src/App/Exceptions/BaseException.php | 1 + src/App/Factories/AppFactory.php | 1 + src/App/Stages/InitDebuggerStage.php | 1 + src/App/Stages/InitHttpStage.php | 1 + src/App/Stages/LoadAppConfigStage.php | 1 + src/App/Stages/LoadEnvironmentStage.php | 1 + src/App/Stages/LoadHelpersStage.php | 1 + src/App/Stages/LoadModulesStage.php | 1 + src/App/Stages/SetupErrorHandlerStage.php | 1 + src/App/Traits/ConsoleAppTrait.php | 1 + src/App/Traits/WebAppTrait.php | 1 + src/Archive/Adapters/PharAdapter.php | 1 + src/Archive/Adapters/ZipAdapter.php | 1 + src/Archive/Archive.php | 1 + src/Archive/Contracts/ArchiveInterface.php | 1 + src/Archive/Enums/ArchiveType.php | 1 + src/Archive/Enums/ExceptionMessages.php | 1 + src/Archive/Exceptions/ArchiveException.php | 1 + src/Archive/Factories/ArchiveFactory.php | 1 + src/Asset/Asset.php | 1 + src/Asset/AssetManager.php | 1 + src/Asset/Enums/ExceptionMessages.php | 1 + src/Asset/Exceptions/AssetException.php | 1 + src/Auth/Adapters/JwtAuthAdapter.php | 1 + src/Auth/Adapters/SessionAuthAdapter.php | 1 + src/Auth/Auth.php | 1 + src/Auth/Contracts/AuthServiceInterface.php | 1 + src/Auth/Contracts/AuthenticatableInterface.php | 1 + src/Auth/Enums/AuthKeys.php | 1 + src/Auth/Enums/AuthType.php | 1 + src/Auth/Enums/ExceptionMessages.php | 1 + src/Auth/Exceptions/AuthException.php | 1 + src/Auth/Factories/AuthFactory.php | 1 + src/Auth/Traits/AuthTrait.php | 1 + src/Auth/User.php | 1 + src/Cache/Adapters/DatabaseAdapter.php | 1 + src/Cache/Adapters/FileAdapter.php | 1 + src/Cache/Adapters/MemcachedAdapter.php | 1 + src/Cache/Adapters/RedisAdapter.php | 1 + src/Cache/Cache.php | 1 + src/Cache/Enums/CacheType.php | 1 + src/Cache/Enums/ExceptionMessages.php | 1 + src/Cache/Exceptions/CacheException.php | 1 + src/Cache/Factories/CacheFactory.php | 1 + src/Cache/Traits/CacheTrait.php | 1 + src/Captcha/Adapters/HcaptchaAdapter.php | 1 + src/Captcha/Adapters/RecaptchaAdapter.php | 1 + src/Captcha/Captcha.php | 1 + src/Captcha/Contracts/CaptchaInterface.php | 1 + src/Captcha/Enums/CaptchaType.php | 1 + src/Captcha/Exceptions/CaptchaException.php | 1 + src/Captcha/Factories/CaptchaFactory.php | 1 + src/Captcha/Traits/CaptchaTrait.php | 1 + src/Config/Config.php | 1 + src/Config/Contracts/ConfigInterface.php | 1 + src/Config/Enums/ExceptionMessages.php | 1 + src/Config/Exceptions/ConfigException.php | 1 + src/Console/CliCommand.php | 1 + src/Console/CommandDiscovery.php | 1 + src/Console/Commands/CronRunCommand.php | 1 + src/Console/Commands/DebugBarCommand.php | 1 + src/Console/Commands/EnvCommand.php | 1 + src/Console/Commands/InstallToolkitCommand.php | 1 + src/Console/Commands/KeyGenerateCommand.php | 1 + src/Console/Commands/MigrationGenerateCommand.php | 1 + src/Console/Commands/MigrationMigrateCommand.php | 1 + src/Console/Commands/ModuleGenerateCommand.php | 1 + src/Console/Commands/OpenApiCommand.php | 1 + src/Console/Commands/ResourceCacheClearCommand.php | 1 + src/Console/Commands/RouteListCommand.php | 1 + src/Console/Commands/ServeCommand.php | 1 + src/Console/Commands/VersionCommand.php | 1 + src/Console/Contracts/CommandInterface.php | 1 + src/Cookie/Contracts/CookieStorageInterface.php | 1 + src/Cookie/Cookie.php | 1 + src/Cron/Contracts/CronTaskInterface.php | 1 + src/Cron/CronManager.php | 1 + src/Cron/CronTask.php | 1 + src/Cron/Enums/ExceptionMessages.php | 1 + src/Cron/Exceptions/CronException.php | 1 + src/Cron/Schedule.php | 1 + src/Csrf/Csrf.php | 1 + src/Csrf/Enums/ExceptionMessages.php | 1 + src/Csrf/Exceptions/CsrfException.php | 1 + src/Database/Adapters/Idiorm/IdiormDbal.php | 1 + src/Database/Adapters/Idiorm/IdiormPatch.php | 1 + src/Database/Adapters/Idiorm/Statements/Criteria.php | 1 + src/Database/Adapters/Idiorm/Statements/Join.php | 1 + src/Database/Adapters/Idiorm/Statements/Model.php | 1 + src/Database/Adapters/Idiorm/Statements/Query.php | 1 + src/Database/Adapters/Idiorm/Statements/Reducer.php | 1 + src/Database/Adapters/Idiorm/Statements/Result.php | 1 + src/Database/Adapters/Idiorm/Statements/Transaction.php | 1 + src/Database/Adapters/Sleekdb/SleekDbal.php | 1 + src/Database/Adapters/Sleekdb/Statements/Criteria.php | 1 + src/Database/Adapters/Sleekdb/Statements/Join.php | 1 + src/Database/Adapters/Sleekdb/Statements/Model.php | 1 + src/Database/Adapters/Sleekdb/Statements/Reducer.php | 1 + src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php | 1 + src/Database/Adapters/Sleekdb/Statements/Result.php | 1 + src/Database/Contracts/DbalInterface.php | 1 + src/Database/Contracts/RelationalInterface.php | 1 + src/Database/Database.php | 1 + src/Database/Enums/DatabaseType.php | 1 + src/Database/Enums/ExceptionMessages.php | 1 + src/Database/Enums/Key.php | 1 + src/Database/Enums/Relation.php | 1 + src/Database/Enums/Type.php | 1 + src/Database/Exceptions/DatabaseException.php | 1 + src/Database/Factories/TableFactory.php | 1 + src/Database/Schemas/Column.php | 1 + src/Database/Schemas/Table.php | 1 + src/Database/Traits/RelationalTrait.php | 1 + src/Database/Traits/TableTrait.php | 1 + src/Database/Traits/TransactionTrait.php | 1 + src/Debugger/Contracts/DebuggerStoreInterface.php | 1 + src/Debugger/Debugger.php | 1 + src/Debugger/DebuggerStore.php | 1 + src/Di/Di.php | 1 + src/Di/DiContainer.php | 1 + src/Di/DiRegistry.php | 1 + src/Di/Enums/ExceptionMessages.php | 1 + src/Di/Exceptions/DiException.php | 1 + src/Encryption/Adapters/AsymmetricEncryptionAdapter.php | 1 + src/Encryption/Adapters/SymmetricEncryptionAdapter.php | 1 + src/Encryption/Contracts/EncryptionInterface.php | 1 + src/Encryption/Cryptor.php | 1 + src/Encryption/Enums/CryptorType.php | 1 + src/Encryption/Enums/ExceptionMessages.php | 1 + src/Encryption/Exceptions/CryptorException.php | 1 + src/Encryption/Factories/CryptorFactory.php | 1 + src/Environment/Enums/Env.php | 1 + src/Environment/Enums/ExceptionMessages.php | 1 + src/Environment/Environment.php | 1 + src/Environment/Exceptions/EnvException.php | 1 + src/Environment/Server.php | 1 + src/Hasher/Enums/ExceptionMessages.php | 1 + src/Hasher/Exceptions/HasherException.php | 1 + src/Hasher/Hasher.php | 1 + src/Hook/Enums/ExceptionMessages.php | 1 + src/Hook/Exceptions/HookException.php | 1 + src/Hook/HookManager.php | 1 + src/Http/Enums/ContentType.php | 1 + src/Http/Enums/StatusCode.php | 1 + src/Http/Exceptions/HttpException.php | 1 + src/Http/Request.php | 1 + src/Http/Response.php | 1 + src/Http/Traits/Request/Body.php | 1 + src/Http/Traits/Request/File.php | 1 + src/Http/Traits/Request/Header.php | 1 + src/Http/Traits/Request/Internal.php | 1 + src/Http/Traits/Request/Params.php | 1 + src/Http/Traits/Request/Query.php | 1 + src/Http/Traits/Request/RawInput.php | 1 + src/Http/Traits/Request/Route.php | 1 + src/Http/Traits/Request/Url.php | 1 + src/Http/Traits/Response/Body.php | 1 + src/Http/Traits/Response/Header.php | 1 + src/Http/Traits/Response/Status.php | 1 + src/HttpClient/Enums/ExceptionMessages.php | 1 + src/HttpClient/Exceptions/HttpClientException.php | 1 + src/HttpClient/HttpClient.php | 1 + src/Jwt/Enums/ExceptionMessages.php | 1 + src/Jwt/Exceptions/JwtException.php | 1 + src/Jwt/JwtToken.php | 1 + src/Lang/Enums/ExceptionMessages.php | 1 + src/Lang/Exceptions/LangException.php | 1 + src/Lang/Factories/LangFactory.php | 1 + src/Lang/Lang.php | 1 + src/Lang/Translator.php | 1 + src/Loader/Exceptions/LoaderException.php | 1 + src/Loader/Loader.php | 1 + src/Loader/Setup.php | 1 + src/Logger/Adapters/DailyAdapter.php | 1 + src/Logger/Adapters/MessageAdapter.php | 1 + src/Logger/Adapters/SingleAdapter.php | 1 + src/Logger/Contracts/ReportableInterface.php | 1 + src/Logger/Enums/ExceptionMessages.php | 1 + src/Logger/Enums/LoggerType.php | 1 + src/Logger/Exceptions/LoggerException.php | 1 + src/Logger/Factories/LoggerFactory.php | 1 + src/Logger/Logger.php | 1 + src/Logger/LoggerConfig.php | 1 + src/Logger/Traits/LoggerTrait.php | 1 + src/Mailer/Adapters/MailgunAdapter.php | 1 + src/Mailer/Adapters/MandrillAdapter.php | 1 + src/Mailer/Adapters/ResendAdapter.php | 1 + src/Mailer/Adapters/SendgridAdapter.php | 1 + src/Mailer/Adapters/SendinblueAdapter.php | 1 + src/Mailer/Adapters/SmtpAdapter.php | 1 + src/Mailer/Contracts/MailerInterface.php | 1 + src/Mailer/Enums/MailerType.php | 1 + src/Mailer/Exceptions/MailerException.php | 1 + src/Mailer/Factories/MailerFactory.php | 1 + src/Mailer/MailTrap.php | 1 + src/Mailer/Mailer.php | 1 + src/Mailer/Traits/MailerTrait.php | 1 + src/Middleware/Enums/ExceptionMessages.php | 1 + src/Middleware/Exceptions/MiddlewareException.php | 1 + src/Middleware/Middleware.php | 1 + src/Middleware/MiddlewareManager.php | 1 + src/Migration/Enums/ExceptionMessages.php | 1 + src/Migration/Exceptions/MigrationException.php | 1 + src/Migration/Migration.php | 1 + src/Migration/MigrationManager.php | 1 + src/Migration/MigrationTable.php | 1 + src/Migration/Templates/MigrationTemplate.php | 1 + src/Model/DbModel.php | 1 + src/Model/Enums/ExceptionMessages.php | 1 + src/Model/Exceptions/ModelException.php | 1 + src/Model/Factories/ModelFactory.php | 1 + src/Model/Model.php | 1 + src/Model/ModelCollection.php | 1 + src/Model/Traits/SoftDeletes.php | 1 + src/Module/Enums/ExceptionMessages.php | 1 + src/Module/Exceptions/ModuleException.php | 1 + src/Module/ModuleLoader.php | 1 + src/Module/ModuleManager.php | 1 + src/Paginator/Adapters/ArrayPaginator.php | 1 + src/Paginator/Adapters/ModelPaginator.php | 1 + src/Paginator/Contracts/PaginatorInterface.php | 1 + src/Paginator/Enums/ExceptionMessages.php | 1 + src/Paginator/Enums/Pagination.php | 1 + src/Paginator/Enums/PaginatorType.php | 1 + src/Paginator/Exceptions/PaginatorException.php | 1 + src/Paginator/Factories/PaginatorFactory.php | 1 + src/Paginator/Paginator.php | 1 + src/Paginator/Traits/PaginatorTrait.php | 1 + src/RateLimit/Adapters/FileRateLimitAdapter.php | 1 + src/RateLimit/Adapters/RedisRateLimitAdapter.php | 1 + src/RateLimit/Contracts/RateLimitAdapterInterface.php | 1 + src/RateLimit/Enums/ExceptionMessages.php | 1 + src/RateLimit/Enums/RateLimitType.php | 1 + src/RateLimit/Exceptions/RateLimitException.php | 1 + src/RateLimit/Factories/RateLimiterFactory.php | 1 + src/RateLimit/RateLimitMiddleware.php | 1 + src/RateLimit/RateLimiter.php | 1 + src/Renderer/Adapters/HtmlAdapter.php | 1 + src/Renderer/Adapters/TwigAdapter.php | 1 + src/Renderer/Contracts/TemplateRendererInterface.php | 1 + src/Renderer/Enums/RendererType.php | 1 + src/Renderer/Exceptions/RendererException.php | 1 + src/Renderer/Factories/RendererFactory.php | 1 + src/Renderer/Renderer.php | 1 + src/ResourceCache/Exceptions/ResourceCacheException.php | 1 + src/ResourceCache/ViewCache.php | 1 + src/Router/Enums/ExceptionMessages.php | 1 + src/Router/Exceptions/RouteException.php | 1 + src/Router/MatchedRoute.php | 1 + src/Router/PatternCompiler.php | 1 + src/Router/Route.php | 1 + src/Router/RouteBuilder.php | 1 + src/Router/RouteCollection.php | 1 + src/Router/RouteDispatcher.php | 1 + src/Router/RouteFinder.php | 1 + src/Service/Exceptions/ServiceException.php | 1 + src/Service/Factories/ServiceFactory.php | 1 + src/Service/Service.php | 1 + src/Session/Adapters/Database/DatabaseHandler.php | 1 + src/Session/Adapters/Database/DatabaseSessionAdapter.php | 1 + src/Session/Adapters/Native/NativeSessionAdapter.php | 1 + src/Session/Contracts/SessionStorageInterface.php | 1 + src/Session/Enums/ExceptionMessages.php | 1 + src/Session/Enums/SessionType.php | 1 + src/Session/Exceptions/SessionException.php | 1 + src/Session/Factories/SessionFactory.php | 1 + src/Session/Session.php | 1 + src/Session/Traits/SessionTrait.php | 1 + src/Storage/Adapters/Dropbox/DropboxApp.php | 1 + src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php | 1 + src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php | 1 + .../Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php | 1 + src/Storage/Adapters/Local/LocalFileSystemAdapter.php | 1 + src/Storage/Contracts/CloudAppInterface.php | 1 + src/Storage/Contracts/FilesystemAdapterInterface.php | 1 + src/Storage/Contracts/LocalFilesystemAdapterInterface.php | 1 + src/Storage/Contracts/TokenServiceInterface.php | 1 + src/Storage/Enums/ExceptionMessages.php | 1 + src/Storage/Enums/FileSystemType.php | 1 + src/Storage/Exceptions/FileSystemException.php | 1 + src/Storage/Exceptions/FileUploadException.php | 1 + src/Storage/Factories/FileSystemFactory.php | 1 + src/Storage/FileSystem.php | 1 + src/Storage/Traits/CloudAppTrait.php | 1 + src/Storage/UploadedFile.php | 1 + src/Tracer/ErrorHandler.php | 1 + src/Transformer/Contracts/TransformerInterface.php | 1 + src/Transformer/Transformer.php | 1 + src/Validation/Rule.php | 1 + src/Validation/Traits/File.php | 1 + src/Validation/Traits/General.php | 1 + src/Validation/Traits/Length.php | 1 + src/Validation/Traits/Lists.php | 1 + src/Validation/Traits/Resource.php | 1 + src/Validation/Traits/Type.php | 1 + src/Validation/Validator.php | 1 + src/View/Enums/ExceptionMessages.php | 1 + src/View/Exceptions/ViewException.php | 1 + src/View/Factories/ViewFactory.php | 1 + src/View/RawParam.php | 1 + src/View/View.php | 1 + tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.lock | 0 tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate | 1 - 317 files changed, 317 insertions(+), 2 deletions(-) delete mode 100644 tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.lock delete mode 100644 tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate diff --git a/.gitignore b/.gitignore index 3b89caf4..831310ed 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,8 @@ Thumbs.db # ========================= /tests/_root/shared/store/* /tests/_root/cron-tests/ +/tests/_root/cache/data/* +!/tests/_root/cache/data/.gitkeep /coverage/ *.log @@ -26,4 +28,4 @@ Thumbs.db /.php-cs-fixer.cache /.phpunit.result.cache /.phpunit.cache -/.cache/ \ No newline at end of file +/.cache/ diff --git a/src/App/Adapters/AppAdapter.php b/src/App/Adapters/AppAdapter.php index 774c5dc4..d7160304 100644 --- a/src/App/Adapters/AppAdapter.php +++ b/src/App/Adapters/AppAdapter.php @@ -15,6 +15,7 @@ /** * Class AppAdapter + * @package Quantum\App */ abstract class AppAdapter implements AppInterface { diff --git a/src/App/Adapters/ConsoleAppAdapter.php b/src/App/Adapters/ConsoleAppAdapter.php index d54437f6..8700ecdd 100644 --- a/src/App/Adapters/ConsoleAppAdapter.php +++ b/src/App/Adapters/ConsoleAppAdapter.php @@ -29,6 +29,7 @@ /** * Class ConsoleAppAdapter + * @package Quantum\App */ class ConsoleAppAdapter extends AppAdapter { diff --git a/src/App/Adapters/WebAppAdapter.php b/src/App/Adapters/WebAppAdapter.php index 815d0c28..1f629231 100644 --- a/src/App/Adapters/WebAppAdapter.php +++ b/src/App/Adapters/WebAppAdapter.php @@ -38,6 +38,7 @@ /** * Class WebAppAdapter + * @package Quantum\App */ class WebAppAdapter extends AppAdapter { diff --git a/src/App/App.php b/src/App/App.php index 70ebf5a5..fde9b474 100644 --- a/src/App/App.php +++ b/src/App/App.php @@ -17,6 +17,7 @@ /** * Class App + * @package Quantum\App * * @method ?int start() */ diff --git a/src/App/AppContext.php b/src/App/AppContext.php index a4bb767d..6e614d26 100644 --- a/src/App/AppContext.php +++ b/src/App/AppContext.php @@ -19,6 +19,7 @@ /** * Class AppContext + * @package Quantum\App */ class AppContext { diff --git a/src/App/BootPipeline.php b/src/App/BootPipeline.php index 886fefc9..89cfa493 100644 --- a/src/App/BootPipeline.php +++ b/src/App/BootPipeline.php @@ -15,6 +15,7 @@ /** * Class BootPipeline + * @package Quantum\App */ class BootPipeline { diff --git a/src/App/Contracts/AppInterface.php b/src/App/Contracts/AppInterface.php index 3c94006b..c87f8dd9 100644 --- a/src/App/Contracts/AppInterface.php +++ b/src/App/Contracts/AppInterface.php @@ -12,6 +12,7 @@ /** * Interface AppInterface + * @package Quantum\App */ interface AppInterface { diff --git a/src/App/Contracts/BootStageInterface.php b/src/App/Contracts/BootStageInterface.php index 4b166db9..f4c13cdd 100644 --- a/src/App/Contracts/BootStageInterface.php +++ b/src/App/Contracts/BootStageInterface.php @@ -14,6 +14,7 @@ /** * Interface BootStageInterface + * @package Quantum\App */ interface BootStageInterface { diff --git a/src/App/Enums/AppType.php b/src/App/Enums/AppType.php index 065a11a3..2a4625ca 100644 --- a/src/App/Enums/AppType.php +++ b/src/App/Enums/AppType.php @@ -12,6 +12,7 @@ /** * Class AppType + * @package Quantum\App * @codeCoverageIgnore */ final class AppType diff --git a/src/App/Enums/ExceptionMessages.php b/src/App/Enums/ExceptionMessages.php index fa61089a..f63f047e 100644 --- a/src/App/Enums/ExceptionMessages.php +++ b/src/App/Enums/ExceptionMessages.php @@ -12,6 +12,7 @@ /** * Class ExceptionMessages + * @package Quantum\App */ class ExceptionMessages { diff --git a/src/App/Enums/ExitCode.php b/src/App/Enums/ExitCode.php index 9ddf15c4..4f6432c7 100644 --- a/src/App/Enums/ExitCode.php +++ b/src/App/Enums/ExitCode.php @@ -12,6 +12,7 @@ /** * Class ExitCode + * @package Quantum\App * @codeCoverageIgnore */ final class ExitCode diff --git a/src/App/Enums/ReservedKeys.php b/src/App/Enums/ReservedKeys.php index 632ce975..0ad3be29 100644 --- a/src/App/Enums/ReservedKeys.php +++ b/src/App/Enums/ReservedKeys.php @@ -12,6 +12,7 @@ /** * Class ReservedKeys + * @package Quantum\App */ final class ReservedKeys { diff --git a/src/App/Exceptions/AppException.php b/src/App/Exceptions/AppException.php index e7abe163..d6bad4bf 100644 --- a/src/App/Exceptions/AppException.php +++ b/src/App/Exceptions/AppException.php @@ -14,6 +14,7 @@ /** * Class AppException + * @package Quantum\App */ class AppException extends BaseException { diff --git a/src/App/Exceptions/BaseException.php b/src/App/Exceptions/BaseException.php index 39153164..e5b820ec 100644 --- a/src/App/Exceptions/BaseException.php +++ b/src/App/Exceptions/BaseException.php @@ -15,6 +15,7 @@ /** * Class BaseException + * @package Quantum\App */ abstract class BaseException extends Exception { diff --git a/src/App/Factories/AppFactory.php b/src/App/Factories/AppFactory.php index 61d5a389..e9188cfe 100644 --- a/src/App/Factories/AppFactory.php +++ b/src/App/Factories/AppFactory.php @@ -21,6 +21,7 @@ /** * Class AppFactory + * @package Quantum\App */ class AppFactory { diff --git a/src/App/Stages/InitDebuggerStage.php b/src/App/Stages/InitDebuggerStage.php index dda041d4..80cdd3ef 100644 --- a/src/App/Stages/InitDebuggerStage.php +++ b/src/App/Stages/InitDebuggerStage.php @@ -15,6 +15,7 @@ /** * Class InitDebuggerStage + * @package Quantum\App */ class InitDebuggerStage implements BootStageInterface { diff --git a/src/App/Stages/InitHttpStage.php b/src/App/Stages/InitHttpStage.php index 0f900a21..0c77901f 100644 --- a/src/App/Stages/InitHttpStage.php +++ b/src/App/Stages/InitHttpStage.php @@ -20,6 +20,7 @@ /** * Class InitHttpStage + * @package Quantum\App */ class InitHttpStage implements BootStageInterface { diff --git a/src/App/Stages/LoadAppConfigStage.php b/src/App/Stages/LoadAppConfigStage.php index 9a5e1203..1e8e51a2 100644 --- a/src/App/Stages/LoadAppConfigStage.php +++ b/src/App/Stages/LoadAppConfigStage.php @@ -20,6 +20,7 @@ /** * Class LoadAppConfigStage + * @package Quantum\App */ class LoadAppConfigStage implements BootStageInterface { diff --git a/src/App/Stages/LoadEnvironmentStage.php b/src/App/Stages/LoadEnvironmentStage.php index cf31e3e7..42d04171 100644 --- a/src/App/Stages/LoadEnvironmentStage.php +++ b/src/App/Stages/LoadEnvironmentStage.php @@ -22,6 +22,7 @@ /** * Class LoadEnvironmentStage + * @package Quantum\App */ class LoadEnvironmentStage implements BootStageInterface { diff --git a/src/App/Stages/LoadHelpersStage.php b/src/App/Stages/LoadHelpersStage.php index f876f099..6c9c64fd 100644 --- a/src/App/Stages/LoadHelpersStage.php +++ b/src/App/Stages/LoadHelpersStage.php @@ -20,6 +20,7 @@ /** * Class LoadHelpersStage + * @package Quantum\App */ class LoadHelpersStage implements BootStageInterface { diff --git a/src/App/Stages/LoadModulesStage.php b/src/App/Stages/LoadModulesStage.php index be0c8f87..2baa9eb0 100644 --- a/src/App/Stages/LoadModulesStage.php +++ b/src/App/Stages/LoadModulesStage.php @@ -23,6 +23,7 @@ /** * Class LoadModulesStage + * @package Quantum\App */ class LoadModulesStage implements BootStageInterface { diff --git a/src/App/Stages/SetupErrorHandlerStage.php b/src/App/Stages/SetupErrorHandlerStage.php index a243a8f4..cf565ee5 100644 --- a/src/App/Stages/SetupErrorHandlerStage.php +++ b/src/App/Stages/SetupErrorHandlerStage.php @@ -22,6 +22,7 @@ /** * Class SetupErrorHandlerStage + * @package Quantum\App */ class SetupErrorHandlerStage implements BootStageInterface { diff --git a/src/App/Traits/ConsoleAppTrait.php b/src/App/Traits/ConsoleAppTrait.php index 6c74e782..ec28b459 100644 --- a/src/App/Traits/ConsoleAppTrait.php +++ b/src/App/Traits/ConsoleAppTrait.php @@ -18,6 +18,7 @@ /** * Class ConsoleAppTrait + * @package Quantum\App */ trait ConsoleAppTrait { diff --git a/src/App/Traits/WebAppTrait.php b/src/App/Traits/WebAppTrait.php index 24e409fa..5bd97a0d 100644 --- a/src/App/Traits/WebAppTrait.php +++ b/src/App/Traits/WebAppTrait.php @@ -30,6 +30,7 @@ /** * Trait WebAppTrait + * @package Quantum\App */ trait WebAppTrait { diff --git a/src/Archive/Adapters/PharAdapter.php b/src/Archive/Adapters/PharAdapter.php index 8be1c7d6..0fc5c763 100644 --- a/src/Archive/Adapters/PharAdapter.php +++ b/src/Archive/Adapters/PharAdapter.php @@ -21,6 +21,7 @@ /** * Class PharAdapter + * @package Quantum\Archive */ class PharAdapter implements ArchiveInterface { diff --git a/src/Archive/Adapters/ZipAdapter.php b/src/Archive/Adapters/ZipAdapter.php index 122f2251..ad9e41e7 100644 --- a/src/Archive/Adapters/ZipAdapter.php +++ b/src/Archive/Adapters/ZipAdapter.php @@ -21,6 +21,7 @@ /** * Class ZipAdapter + * @package Quantum\Archive\Adapters */ class ZipAdapter implements ArchiveInterface { diff --git a/src/Archive/Archive.php b/src/Archive/Archive.php index ea08a4ab..a236f3f7 100644 --- a/src/Archive/Archive.php +++ b/src/Archive/Archive.php @@ -16,6 +16,7 @@ /** * Class Archive + * @package Quantum\Archive * @method void setName(string $archiveName) * @method bool offsetExists(string $filename) * @method bool addEmptyDir(string $directory) diff --git a/src/Archive/Contracts/ArchiveInterface.php b/src/Archive/Contracts/ArchiveInterface.php index 53b90d89..da3fc234 100644 --- a/src/Archive/Contracts/ArchiveInterface.php +++ b/src/Archive/Contracts/ArchiveInterface.php @@ -12,6 +12,7 @@ /** * Interface ArchiveInterface + * @package Quantum\Archive */ interface ArchiveInterface { diff --git a/src/Archive/Enums/ArchiveType.php b/src/Archive/Enums/ArchiveType.php index b92d44fe..74994b36 100644 --- a/src/Archive/Enums/ArchiveType.php +++ b/src/Archive/Enums/ArchiveType.php @@ -12,6 +12,7 @@ /** * Class ArchiveType + * @package Quantum\Archive * @codeCoverageIgnore */ final class ArchiveType diff --git a/src/Archive/Enums/ExceptionMessages.php b/src/Archive/Enums/ExceptionMessages.php index 8f6d4252..427edbb1 100644 --- a/src/Archive/Enums/ExceptionMessages.php +++ b/src/Archive/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Archive */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Archive/Exceptions/ArchiveException.php b/src/Archive/Exceptions/ArchiveException.php index 13cd1567..ec1f21d1 100644 --- a/src/Archive/Exceptions/ArchiveException.php +++ b/src/Archive/Exceptions/ArchiveException.php @@ -15,6 +15,7 @@ /** * Class CacheException + * @package Quantum\Archive */ class ArchiveException extends BaseException { diff --git a/src/Archive/Factories/ArchiveFactory.php b/src/Archive/Factories/ArchiveFactory.php index 7a833db8..8595e904 100644 --- a/src/Archive/Factories/ArchiveFactory.php +++ b/src/Archive/Factories/ArchiveFactory.php @@ -21,6 +21,7 @@ /** * Class ArchiveFactory + * @package Quantum\Archive */ class ArchiveFactory { diff --git a/src/Asset/Asset.php b/src/Asset/Asset.php index 4d6cac1e..88bdfaf6 100644 --- a/src/Asset/Asset.php +++ b/src/Asset/Asset.php @@ -15,6 +15,7 @@ /** * Class Asset + * @package Quantum\Asset */ class Asset { diff --git a/src/Asset/AssetManager.php b/src/Asset/AssetManager.php index fcda0bdb..b0da6789 100644 --- a/src/Asset/AssetManager.php +++ b/src/Asset/AssetManager.php @@ -16,6 +16,7 @@ /** * Class AssetFactory + * @package Quantum\Asset */ class AssetManager { diff --git a/src/Asset/Enums/ExceptionMessages.php b/src/Asset/Enums/ExceptionMessages.php index fcf0c979..583ffb82 100644 --- a/src/Asset/Enums/ExceptionMessages.php +++ b/src/Asset/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Asset */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Asset/Exceptions/AssetException.php b/src/Asset/Exceptions/AssetException.php index 2c9e0bf8..e0dc8aa2 100644 --- a/src/Asset/Exceptions/AssetException.php +++ b/src/Asset/Exceptions/AssetException.php @@ -15,6 +15,7 @@ /** * Class AssetException + * @package Quantum\Asset */ class AssetException extends Exception { diff --git a/src/Auth/Adapters/JwtAuthAdapter.php b/src/Auth/Adapters/JwtAuthAdapter.php index 6e258896..434e9ab8 100644 --- a/src/Auth/Adapters/JwtAuthAdapter.php +++ b/src/Auth/Adapters/JwtAuthAdapter.php @@ -26,6 +26,7 @@ /** * Class ApiAuth + * @package Quantum\Auth */ class JwtAuthAdapter implements AuthenticatableInterface { diff --git a/src/Auth/Adapters/SessionAuthAdapter.php b/src/Auth/Adapters/SessionAuthAdapter.php index 6b5b4bc7..3d676b64 100644 --- a/src/Auth/Adapters/SessionAuthAdapter.php +++ b/src/Auth/Adapters/SessionAuthAdapter.php @@ -28,6 +28,7 @@ /** * Class WebAuth + * @package Quantum\Auth */ class SessionAuthAdapter implements AuthenticatableInterface { diff --git a/src/Auth/Auth.php b/src/Auth/Auth.php index 98070290..4155e218 100644 --- a/src/Auth/Auth.php +++ b/src/Auth/Auth.php @@ -16,6 +16,7 @@ /** * Class Auth + * @package Quantum\Auth * @method mixed signin(string $username, string $password, bool $remember = false) * @method bool signout() * @method bool check() diff --git a/src/Auth/Contracts/AuthServiceInterface.php b/src/Auth/Contracts/AuthServiceInterface.php index 7f9d30c1..c076277b 100644 --- a/src/Auth/Contracts/AuthServiceInterface.php +++ b/src/Auth/Contracts/AuthServiceInterface.php @@ -14,6 +14,7 @@ /** * Interface AuthServiceInterface + * @package Quantum\Auth */ interface AuthServiceInterface { diff --git a/src/Auth/Contracts/AuthenticatableInterface.php b/src/Auth/Contracts/AuthenticatableInterface.php index e1989977..ec30c01c 100644 --- a/src/Auth/Contracts/AuthenticatableInterface.php +++ b/src/Auth/Contracts/AuthenticatableInterface.php @@ -14,6 +14,7 @@ /** * Interface AuthenticatableInterface + * @package Quantum\Auth */ interface AuthenticatableInterface { diff --git a/src/Auth/Enums/AuthKeys.php b/src/Auth/Enums/AuthKeys.php index 524af6a0..3c6ee165 100644 --- a/src/Auth/Enums/AuthKeys.php +++ b/src/Auth/Enums/AuthKeys.php @@ -12,6 +12,7 @@ /** * Class AuthKeys + * @package Quantum\Auth * @codeCoverageIgnore */ final class AuthKeys diff --git a/src/Auth/Enums/AuthType.php b/src/Auth/Enums/AuthType.php index 1394e026..4c78cad2 100644 --- a/src/Auth/Enums/AuthType.php +++ b/src/Auth/Enums/AuthType.php @@ -12,6 +12,7 @@ /** * Class AuthType + * @package Quantum\Auth * @codeCoverageIgnore */ final class AuthType diff --git a/src/Auth/Enums/ExceptionMessages.php b/src/Auth/Enums/ExceptionMessages.php index 7f8ebbfd..68c04ddb 100644 --- a/src/Auth/Enums/ExceptionMessages.php +++ b/src/Auth/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Auth */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Auth/Exceptions/AuthException.php b/src/Auth/Exceptions/AuthException.php index 3385cc51..9f71598b 100644 --- a/src/Auth/Exceptions/AuthException.php +++ b/src/Auth/Exceptions/AuthException.php @@ -15,6 +15,7 @@ /** * Class AuthException + * @package Quantum\Exceptions */ class AuthException extends BaseException { diff --git a/src/Auth/Factories/AuthFactory.php b/src/Auth/Factories/AuthFactory.php index efe60835..5dcca8b1 100644 --- a/src/Auth/Factories/AuthFactory.php +++ b/src/Auth/Factories/AuthFactory.php @@ -31,6 +31,7 @@ /** * Class AuthFactory + * @package Quantum\Auth */ class AuthFactory { diff --git a/src/Auth/Traits/AuthTrait.php b/src/Auth/Traits/AuthTrait.php index 6bef7783..7355222f 100644 --- a/src/Auth/Traits/AuthTrait.php +++ b/src/Auth/Traits/AuthTrait.php @@ -28,6 +28,7 @@ /** * Trait AuthTrait + * @package Quantum\Auth */ trait AuthTrait { diff --git a/src/Auth/User.php b/src/Auth/User.php index eb37110a..79ad2094 100644 --- a/src/Auth/User.php +++ b/src/Auth/User.php @@ -12,6 +12,7 @@ /** * Class User + * @package Quantum\Auth */ class User { diff --git a/src/Cache/Adapters/DatabaseAdapter.php b/src/Cache/Adapters/DatabaseAdapter.php index 56a82139..9da18651 100644 --- a/src/Cache/Adapters/DatabaseAdapter.php +++ b/src/Cache/Adapters/DatabaseAdapter.php @@ -22,6 +22,7 @@ /** * Class DatabaseAdapter + * @package Quantum\Cache */ class DatabaseAdapter implements CacheInterface { diff --git a/src/Cache/Adapters/FileAdapter.php b/src/Cache/Adapters/FileAdapter.php index 45535ab8..e949ece0 100644 --- a/src/Cache/Adapters/FileAdapter.php +++ b/src/Cache/Adapters/FileAdapter.php @@ -24,6 +24,7 @@ /** * Class FileAdapter + * @package Quantum\Cache */ class FileAdapter implements CacheInterface { diff --git a/src/Cache/Adapters/MemcachedAdapter.php b/src/Cache/Adapters/MemcachedAdapter.php index 82ecb274..68cd44c7 100644 --- a/src/Cache/Adapters/MemcachedAdapter.php +++ b/src/Cache/Adapters/MemcachedAdapter.php @@ -21,6 +21,7 @@ /** * Class MemcachedAdapter + * @package Quantum\Cache */ class MemcachedAdapter implements CacheInterface { diff --git a/src/Cache/Adapters/RedisAdapter.php b/src/Cache/Adapters/RedisAdapter.php index 4baa871c..fc3d8430 100644 --- a/src/Cache/Adapters/RedisAdapter.php +++ b/src/Cache/Adapters/RedisAdapter.php @@ -20,6 +20,7 @@ /** * Class RedisAdapter + * @package Quantum\Cache */ class RedisAdapter implements CacheInterface { diff --git a/src/Cache/Cache.php b/src/Cache/Cache.php index 5cc670de..992aa249 100644 --- a/src/Cache/Cache.php +++ b/src/Cache/Cache.php @@ -16,6 +16,7 @@ /** * Class Cache + * @package Quantum\Cache * @method mixed get($key, $default = null) * @method iterable getMultiple($keys, $default = null) * @method has($key): bool diff --git a/src/Cache/Enums/CacheType.php b/src/Cache/Enums/CacheType.php index c3238bcd..ba1c0429 100644 --- a/src/Cache/Enums/CacheType.php +++ b/src/Cache/Enums/CacheType.php @@ -12,6 +12,7 @@ /** * Class CacheType + * @package Quantum\Cache * @codeCoverageIgnore */ final class CacheType diff --git a/src/Cache/Enums/ExceptionMessages.php b/src/Cache/Enums/ExceptionMessages.php index 9379c4f3..b76e3da9 100644 --- a/src/Cache/Enums/ExceptionMessages.php +++ b/src/Cache/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Cache */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Cache/Exceptions/CacheException.php b/src/Cache/Exceptions/CacheException.php index 18eae324..345f43d6 100644 --- a/src/Cache/Exceptions/CacheException.php +++ b/src/Cache/Exceptions/CacheException.php @@ -14,6 +14,7 @@ /** * Class CacheException + * @package Quantum\Cache * @codeCoverageIgnore */ class CacheException extends BaseException diff --git a/src/Cache/Factories/CacheFactory.php b/src/Cache/Factories/CacheFactory.php index 4abd4b5d..415d336d 100644 --- a/src/Cache/Factories/CacheFactory.php +++ b/src/Cache/Factories/CacheFactory.php @@ -27,6 +27,7 @@ /** * Class CacheFactory + * @package Quantum\Cache */ class CacheFactory { diff --git a/src/Cache/Traits/CacheTrait.php b/src/Cache/Traits/CacheTrait.php index 425c2279..5b59eb36 100644 --- a/src/Cache/Traits/CacheTrait.php +++ b/src/Cache/Traits/CacheTrait.php @@ -15,6 +15,7 @@ /** * Trait CacheTrait + * @package Quantum\Cache\Traits */ trait CacheTrait { diff --git a/src/Captcha/Adapters/HcaptchaAdapter.php b/src/Captcha/Adapters/HcaptchaAdapter.php index 64ff7dde..f4b7606d 100644 --- a/src/Captcha/Adapters/HcaptchaAdapter.php +++ b/src/Captcha/Adapters/HcaptchaAdapter.php @@ -16,6 +16,7 @@ /** * Class HcaptchaAdapter + * @package Quantum\Captcha */ class HcaptchaAdapter implements CaptchaInterface { diff --git a/src/Captcha/Adapters/RecaptchaAdapter.php b/src/Captcha/Adapters/RecaptchaAdapter.php index 41894f87..4d16e8a4 100644 --- a/src/Captcha/Adapters/RecaptchaAdapter.php +++ b/src/Captcha/Adapters/RecaptchaAdapter.php @@ -16,6 +16,7 @@ /** * Class RecaptchaAdapter + * @package Quantum\Captcha */ class RecaptchaAdapter implements CaptchaInterface { diff --git a/src/Captcha/Captcha.php b/src/Captcha/Captcha.php index f6a2d5fe..d344b088 100644 --- a/src/Captcha/Captcha.php +++ b/src/Captcha/Captcha.php @@ -16,6 +16,7 @@ /** * Class Captcha + * @package Quantum\Captcha * @method string getName() * @method string|null getType() * @method CaptchaInterface setType(string $type) diff --git a/src/Captcha/Contracts/CaptchaInterface.php b/src/Captcha/Contracts/CaptchaInterface.php index 87cdf6ec..a2ca7578 100644 --- a/src/Captcha/Contracts/CaptchaInterface.php +++ b/src/Captcha/Contracts/CaptchaInterface.php @@ -12,6 +12,7 @@ /** * Interface CaptchaInterface + * @package Quantum\Captcha */ interface CaptchaInterface { diff --git a/src/Captcha/Enums/CaptchaType.php b/src/Captcha/Enums/CaptchaType.php index e1f0b20f..ccea561c 100644 --- a/src/Captcha/Enums/CaptchaType.php +++ b/src/Captcha/Enums/CaptchaType.php @@ -12,6 +12,7 @@ /** * Class CaptchaType + * @package Quantum\Captcha * @codeCoverageIgnore */ final class CaptchaType diff --git a/src/Captcha/Exceptions/CaptchaException.php b/src/Captcha/Exceptions/CaptchaException.php index 09ece025..a50aecd1 100644 --- a/src/Captcha/Exceptions/CaptchaException.php +++ b/src/Captcha/Exceptions/CaptchaException.php @@ -14,6 +14,7 @@ /** * Class CaptchaException + * @package Quantum\Captcha * @codeCoverageIgnore */ class CaptchaException extends BaseException diff --git a/src/Captcha/Factories/CaptchaFactory.php b/src/Captcha/Factories/CaptchaFactory.php index 07d8e869..d38951d9 100644 --- a/src/Captcha/Factories/CaptchaFactory.php +++ b/src/Captcha/Factories/CaptchaFactory.php @@ -26,6 +26,7 @@ /** * Class CaptchaFactory + * @package Quantum\Captcha */ class CaptchaFactory { diff --git a/src/Captcha/Traits/CaptchaTrait.php b/src/Captcha/Traits/CaptchaTrait.php index d791ed9c..0b6ae4b8 100644 --- a/src/Captcha/Traits/CaptchaTrait.php +++ b/src/Captcha/Traits/CaptchaTrait.php @@ -21,6 +21,7 @@ /** * Trait CaptchaTrait + * @package Quantum\Captcha */ trait CaptchaTrait { diff --git a/src/Config/Config.php b/src/Config/Config.php index 50134f94..02f89b4c 100644 --- a/src/Config/Config.php +++ b/src/Config/Config.php @@ -22,6 +22,7 @@ /** * Class Config + * @package Quantum\Config */ class Config implements ConfigInterface { diff --git a/src/Config/Contracts/ConfigInterface.php b/src/Config/Contracts/ConfigInterface.php index 0dc3b0ec..ad885d9f 100644 --- a/src/Config/Contracts/ConfigInterface.php +++ b/src/Config/Contracts/ConfigInterface.php @@ -14,6 +14,7 @@ /** * Interface ConfigInterface + * @package Quantum\Config */ interface ConfigInterface { diff --git a/src/Config/Enums/ExceptionMessages.php b/src/Config/Enums/ExceptionMessages.php index f4be754f..7672284e 100644 --- a/src/Config/Enums/ExceptionMessages.php +++ b/src/Config/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Config */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Config/Exceptions/ConfigException.php b/src/Config/Exceptions/ConfigException.php index 99778270..15120edc 100644 --- a/src/Config/Exceptions/ConfigException.php +++ b/src/Config/Exceptions/ConfigException.php @@ -15,6 +15,7 @@ /** * Class ConfigException + * @package Quantum\Config */ class ConfigException extends BaseException { diff --git a/src/Console/CliCommand.php b/src/Console/CliCommand.php index b0495262..6a26cb5a 100644 --- a/src/Console/CliCommand.php +++ b/src/Console/CliCommand.php @@ -21,6 +21,7 @@ /** * Class CliCommand + * @package Quantum\Console */ abstract class CliCommand extends Command implements CommandInterface { diff --git a/src/Console/CommandDiscovery.php b/src/Console/CommandDiscovery.php index e7850b7f..d04a149b 100644 --- a/src/Console/CommandDiscovery.php +++ b/src/Console/CommandDiscovery.php @@ -15,6 +15,7 @@ /** * Class CommandDiscovery + * @package Quantum\Console */ class CommandDiscovery { diff --git a/src/Console/Commands/CronRunCommand.php b/src/Console/Commands/CronRunCommand.php index 63190bd0..b97b131d 100644 --- a/src/Console/Commands/CronRunCommand.php +++ b/src/Console/Commands/CronRunCommand.php @@ -21,6 +21,7 @@ /** * Class CronRunCommand + * @package Quantum\Console */ class CronRunCommand extends CliCommand { diff --git a/src/Console/Commands/DebugBarCommand.php b/src/Console/Commands/DebugBarCommand.php index 1cee10b3..19cc23a5 100644 --- a/src/Console/Commands/DebugBarCommand.php +++ b/src/Console/Commands/DebugBarCommand.php @@ -19,6 +19,7 @@ /** * Class DebugBarAssetsCommand + * @package Quantum\Console */ class DebugBarCommand extends CliCommand { diff --git a/src/Console/Commands/EnvCommand.php b/src/Console/Commands/EnvCommand.php index b2b4ebec..4dfadf17 100644 --- a/src/Console/Commands/EnvCommand.php +++ b/src/Console/Commands/EnvCommand.php @@ -20,6 +20,7 @@ /** * Class EnvCommand + * @package Quantum\Console */ class EnvCommand extends CliCommand { diff --git a/src/Console/Commands/InstallToolkitCommand.php b/src/Console/Commands/InstallToolkitCommand.php index 3074450b..0c07aec5 100644 --- a/src/Console/Commands/InstallToolkitCommand.php +++ b/src/Console/Commands/InstallToolkitCommand.php @@ -23,6 +23,7 @@ /** * Class InstallToolkitCommand + * @package Quantum\Console */ class InstallToolkitCommand extends CliCommand { diff --git a/src/Console/Commands/KeyGenerateCommand.php b/src/Console/Commands/KeyGenerateCommand.php index 7a8fc444..518d243d 100644 --- a/src/Console/Commands/KeyGenerateCommand.php +++ b/src/Console/Commands/KeyGenerateCommand.php @@ -16,6 +16,7 @@ /** * Class KeyGenerateCommand + * @package Quantum\Console */ class KeyGenerateCommand extends CliCommand { diff --git a/src/Console/Commands/MigrationGenerateCommand.php b/src/Console/Commands/MigrationGenerateCommand.php index a8cea7ee..df146a85 100644 --- a/src/Console/Commands/MigrationGenerateCommand.php +++ b/src/Console/Commands/MigrationGenerateCommand.php @@ -16,6 +16,7 @@ /** * Class MigrationGenerateCommand + * @package Quantum\Console */ class MigrationGenerateCommand extends CliCommand { diff --git a/src/Console/Commands/MigrationMigrateCommand.php b/src/Console/Commands/MigrationMigrateCommand.php index f2e76099..207276d0 100644 --- a/src/Console/Commands/MigrationMigrateCommand.php +++ b/src/Console/Commands/MigrationMigrateCommand.php @@ -18,6 +18,7 @@ /** * Class MigrationMigrateCommand + * @package Quantum\Console */ class MigrationMigrateCommand extends CliCommand { diff --git a/src/Console/Commands/ModuleGenerateCommand.php b/src/Console/Commands/ModuleGenerateCommand.php index 9c641451..36c452ad 100644 --- a/src/Console/Commands/ModuleGenerateCommand.php +++ b/src/Console/Commands/ModuleGenerateCommand.php @@ -17,6 +17,7 @@ /** * Class ModuleGenerateCommand + * @package Quantum\Console\Commands */ class ModuleGenerateCommand extends CliCommand { diff --git a/src/Console/Commands/OpenApiCommand.php b/src/Console/Commands/OpenApiCommand.php index 1c33eeda..7c8891d5 100644 --- a/src/Console/Commands/OpenApiCommand.php +++ b/src/Console/Commands/OpenApiCommand.php @@ -26,6 +26,7 @@ /** * Class OpenApiCommand + * @package Quantum\Console */ class OpenApiCommand extends CliCommand { diff --git a/src/Console/Commands/ResourceCacheClearCommand.php b/src/Console/Commands/ResourceCacheClearCommand.php index 7a1fff51..80a9a004 100644 --- a/src/Console/Commands/ResourceCacheClearCommand.php +++ b/src/Console/Commands/ResourceCacheClearCommand.php @@ -23,6 +23,7 @@ /** * Class ResourceCacheClearCommand + * @package Quantum\Console */ class ResourceCacheClearCommand extends CliCommand { diff --git a/src/Console/Commands/RouteListCommand.php b/src/Console/Commands/RouteListCommand.php index 484fa78c..82694555 100644 --- a/src/Console/Commands/RouteListCommand.php +++ b/src/Console/Commands/RouteListCommand.php @@ -24,6 +24,7 @@ /** * Class RouteListCommand + * @package Quantum\Console */ class RouteListCommand extends CliCommand { diff --git a/src/Console/Commands/ServeCommand.php b/src/Console/Commands/ServeCommand.php index 9211c28d..44daf109 100644 --- a/src/Console/Commands/ServeCommand.php +++ b/src/Console/Commands/ServeCommand.php @@ -16,6 +16,7 @@ /** * Class ServeCommand + * @package Quantum\Console */ class ServeCommand extends CliCommand { diff --git a/src/Console/Commands/VersionCommand.php b/src/Console/Commands/VersionCommand.php index ca88f7d8..2e745553 100644 --- a/src/Console/Commands/VersionCommand.php +++ b/src/Console/Commands/VersionCommand.php @@ -15,6 +15,7 @@ /** * Class VersionCommand + * @package Quantum\Console */ class VersionCommand extends CliCommand { diff --git a/src/Console/Contracts/CommandInterface.php b/src/Console/Contracts/CommandInterface.php index c54afd2d..5aedc24b 100644 --- a/src/Console/Contracts/CommandInterface.php +++ b/src/Console/Contracts/CommandInterface.php @@ -12,6 +12,7 @@ /** * Interface CommandInterface + * @package Quantum\Console */ interface CommandInterface { diff --git a/src/Cookie/Contracts/CookieStorageInterface.php b/src/Cookie/Contracts/CookieStorageInterface.php index a98cb067..7728b80b 100644 --- a/src/Cookie/Contracts/CookieStorageInterface.php +++ b/src/Cookie/Contracts/CookieStorageInterface.php @@ -12,6 +12,7 @@ /** * Interface CookieStorageInterface + * @package Quantum\Cookie */ interface CookieStorageInterface { diff --git a/src/Cookie/Cookie.php b/src/Cookie/Cookie.php index 7720eba0..dab7037e 100644 --- a/src/Cookie/Cookie.php +++ b/src/Cookie/Cookie.php @@ -15,6 +15,7 @@ /** * Class Cookie + * @package Quantum\Cookie */ class Cookie implements CookieStorageInterface { diff --git a/src/Cron/Contracts/CronTaskInterface.php b/src/Cron/Contracts/CronTaskInterface.php index 6c8e42e6..88d609e7 100644 --- a/src/Cron/Contracts/CronTaskInterface.php +++ b/src/Cron/Contracts/CronTaskInterface.php @@ -12,6 +12,7 @@ /** * Interface CronTaskInterface + * @package Quantum\Cron */ interface CronTaskInterface { diff --git a/src/Cron/CronManager.php b/src/Cron/CronManager.php index 41b91bef..bed7034e 100644 --- a/src/Cron/CronManager.php +++ b/src/Cron/CronManager.php @@ -22,6 +22,7 @@ /** * Class CronManager + * @package Quantum\Cron */ class CronManager { diff --git a/src/Cron/CronTask.php b/src/Cron/CronTask.php index fd1ae857..4d788e90 100644 --- a/src/Cron/CronTask.php +++ b/src/Cron/CronTask.php @@ -17,6 +17,7 @@ /** * Class CronTask + * @package Quantum\Cron */ class CronTask implements CronTaskInterface { diff --git a/src/Cron/Enums/ExceptionMessages.php b/src/Cron/Enums/ExceptionMessages.php index 591f2080..4a034fdb 100644 --- a/src/Cron/Enums/ExceptionMessages.php +++ b/src/Cron/Enums/ExceptionMessages.php @@ -12,6 +12,7 @@ /** * Enum ExceptionMessages + * @package Quantum\Cron * @codeCoverageIgnore */ final class ExceptionMessages diff --git a/src/Cron/Exceptions/CronException.php b/src/Cron/Exceptions/CronException.php index 484c1c69..f55282bf 100644 --- a/src/Cron/Exceptions/CronException.php +++ b/src/Cron/Exceptions/CronException.php @@ -14,6 +14,7 @@ /** * Class CronException + * @package Quantum\Cron */ class CronException extends \Exception { diff --git a/src/Cron/Schedule.php b/src/Cron/Schedule.php index 214a6585..965d6c7e 100644 --- a/src/Cron/Schedule.php +++ b/src/Cron/Schedule.php @@ -15,6 +15,7 @@ /** * Class Schedule * Fluent API for creating cron schedules + * @package Quantum\Cron */ class Schedule { diff --git a/src/Csrf/Csrf.php b/src/Csrf/Csrf.php index e4552c00..d5d19245 100644 --- a/src/Csrf/Csrf.php +++ b/src/Csrf/Csrf.php @@ -21,6 +21,7 @@ /** * Class Csrf + * @package Quantum\Csrf */ class Csrf { diff --git a/src/Csrf/Enums/ExceptionMessages.php b/src/Csrf/Enums/ExceptionMessages.php index 6dac90a4..e4c1b826 100644 --- a/src/Csrf/Enums/ExceptionMessages.php +++ b/src/Csrf/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Csrf */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Csrf/Exceptions/CsrfException.php b/src/Csrf/Exceptions/CsrfException.php index aba1c421..f1afada2 100644 --- a/src/Csrf/Exceptions/CsrfException.php +++ b/src/Csrf/Exceptions/CsrfException.php @@ -15,6 +15,7 @@ /** * Class CsrfException + * @package Quantum\Csrf */ class CsrfException extends BaseException { diff --git a/src/Database/Adapters/Idiorm/IdiormDbal.php b/src/Database/Adapters/Idiorm/IdiormDbal.php index e02496fb..0649c582 100644 --- a/src/Database/Adapters/Idiorm/IdiormDbal.php +++ b/src/Database/Adapters/Idiorm/IdiormDbal.php @@ -29,6 +29,7 @@ /** * Class IdiormDbal + * @package Quantum\Database */ class IdiormDbal implements DbalInterface, RelationalInterface { diff --git a/src/Database/Adapters/Idiorm/IdiormPatch.php b/src/Database/Adapters/Idiorm/IdiormPatch.php index 083f88b9..3f9de7f4 100644 --- a/src/Database/Adapters/Idiorm/IdiormPatch.php +++ b/src/Database/Adapters/Idiorm/IdiormPatch.php @@ -15,6 +15,7 @@ /** * Class IdiormPatch + * @package Quantum\Database */ class IdiormPatch extends ORM { diff --git a/src/Database/Adapters/Idiorm/Statements/Criteria.php b/src/Database/Adapters/Idiorm/Statements/Criteria.php index ac8bd9d3..9630ee48 100644 --- a/src/Database/Adapters/Idiorm/Statements/Criteria.php +++ b/src/Database/Adapters/Idiorm/Statements/Criteria.php @@ -16,6 +16,7 @@ /** * Trait Criteria + * @package Quantum\Database */ trait Criteria { diff --git a/src/Database/Adapters/Idiorm/Statements/Join.php b/src/Database/Adapters/Idiorm/Statements/Join.php index a07d0137..d0eff321 100644 --- a/src/Database/Adapters/Idiorm/Statements/Join.php +++ b/src/Database/Adapters/Idiorm/Statements/Join.php @@ -19,6 +19,7 @@ /** * Trait Join + * @package Quantum\Database */ trait Join { diff --git a/src/Database/Adapters/Idiorm/Statements/Model.php b/src/Database/Adapters/Idiorm/Statements/Model.php index 9d314d95..21528e9b 100644 --- a/src/Database/Adapters/Idiorm/Statements/Model.php +++ b/src/Database/Adapters/Idiorm/Statements/Model.php @@ -16,6 +16,7 @@ /** * Trait Model + * @package Quantum\Database */ trait Model { diff --git a/src/Database/Adapters/Idiorm/Statements/Query.php b/src/Database/Adapters/Idiorm/Statements/Query.php index f902db7e..98f97513 100644 --- a/src/Database/Adapters/Idiorm/Statements/Query.php +++ b/src/Database/Adapters/Idiorm/Statements/Query.php @@ -17,6 +17,7 @@ /** * Trait Query + * @package Quantum\Database */ trait Query { diff --git a/src/Database/Adapters/Idiorm/Statements/Reducer.php b/src/Database/Adapters/Idiorm/Statements/Reducer.php index b84b09d6..e90afc15 100644 --- a/src/Database/Adapters/Idiorm/Statements/Reducer.php +++ b/src/Database/Adapters/Idiorm/Statements/Reducer.php @@ -18,6 +18,7 @@ /** * Trait Modifier + * @package Quantum\Database */ trait Reducer { diff --git a/src/Database/Adapters/Idiorm/Statements/Result.php b/src/Database/Adapters/Idiorm/Statements/Result.php index 1942b044..fab56249 100644 --- a/src/Database/Adapters/Idiorm/Statements/Result.php +++ b/src/Database/Adapters/Idiorm/Statements/Result.php @@ -16,6 +16,7 @@ /** * Trait Result + * @package Quantum\Database */ trait Result { diff --git a/src/Database/Adapters/Idiorm/Statements/Transaction.php b/src/Database/Adapters/Idiorm/Statements/Transaction.php index a927620c..42ac3baf 100644 --- a/src/Database/Adapters/Idiorm/Statements/Transaction.php +++ b/src/Database/Adapters/Idiorm/Statements/Transaction.php @@ -15,6 +15,7 @@ /** * Trait Transaction + * @package Quantum\Database */ trait Transaction { diff --git a/src/Database/Adapters/Sleekdb/SleekDbal.php b/src/Database/Adapters/Sleekdb/SleekDbal.php index 4b9ec7d3..d0fa5aee 100644 --- a/src/Database/Adapters/Sleekdb/SleekDbal.php +++ b/src/Database/Adapters/Sleekdb/SleekDbal.php @@ -28,6 +28,7 @@ /** * Class SleekDbal + * @package Quantum\Database */ class SleekDbal implements DbalInterface { diff --git a/src/Database/Adapters/Sleekdb/Statements/Criteria.php b/src/Database/Adapters/Sleekdb/Statements/Criteria.php index 2307bb4d..a3c4ea26 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Criteria.php +++ b/src/Database/Adapters/Sleekdb/Statements/Criteria.php @@ -15,6 +15,7 @@ /** * Trait Criteria + * @package Quantum\Database */ trait Criteria { diff --git a/src/Database/Adapters/Sleekdb/Statements/Join.php b/src/Database/Adapters/Sleekdb/Statements/Join.php index 1982a611..1d879a6b 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Join.php +++ b/src/Database/Adapters/Sleekdb/Statements/Join.php @@ -21,6 +21,7 @@ /** * Trait Join + * @package Quantum\Database */ trait Join { diff --git a/src/Database/Adapters/Sleekdb/Statements/Model.php b/src/Database/Adapters/Sleekdb/Statements/Model.php index b5039c9d..360c9fd8 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Model.php +++ b/src/Database/Adapters/Sleekdb/Statements/Model.php @@ -22,6 +22,7 @@ /** * Trait Model + * @package Quantum\Database */ trait Model { diff --git a/src/Database/Adapters/Sleekdb/Statements/Reducer.php b/src/Database/Adapters/Sleekdb/Statements/Reducer.php index 818a8843..b6ee16c8 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Reducer.php +++ b/src/Database/Adapters/Sleekdb/Statements/Reducer.php @@ -16,6 +16,7 @@ /** * Trait Modifier + * @package Quantum\Database */ trait Reducer { diff --git a/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php b/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php index 182bf6c0..7a329281 100644 --- a/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php +++ b/src/Database/Adapters/Sleekdb/Statements/RelatedCriteria.php @@ -15,6 +15,7 @@ /** * Trait RelatedCriteria + * @package Quantum\Database */ trait RelatedCriteria { diff --git a/src/Database/Adapters/Sleekdb/Statements/Result.php b/src/Database/Adapters/Sleekdb/Statements/Result.php index 4826d1ee..d7bed515 100644 --- a/src/Database/Adapters/Sleekdb/Statements/Result.php +++ b/src/Database/Adapters/Sleekdb/Statements/Result.php @@ -21,6 +21,7 @@ /** * Trait Result + * @package Quantum\Database */ trait Result { diff --git a/src/Database/Contracts/DbalInterface.php b/src/Database/Contracts/DbalInterface.php index 4a976e0b..96ae3a44 100644 --- a/src/Database/Contracts/DbalInterface.php +++ b/src/Database/Contracts/DbalInterface.php @@ -14,6 +14,7 @@ /** * Database Abstract Layer interface + * @package Quantum\Database */ interface DbalInterface { diff --git a/src/Database/Contracts/RelationalInterface.php b/src/Database/Contracts/RelationalInterface.php index b1be91a5..9a3546fd 100644 --- a/src/Database/Contracts/RelationalInterface.php +++ b/src/Database/Contracts/RelationalInterface.php @@ -12,6 +12,7 @@ /** * Database Abstract Layer interface + * @package Quantum\Database */ interface RelationalInterface { diff --git a/src/Database/Database.php b/src/Database/Database.php index ec108673..0fb73bfa 100644 --- a/src/Database/Database.php +++ b/src/Database/Database.php @@ -24,6 +24,7 @@ /** * Class Database + * @package Quantum\Database */ class Database { diff --git a/src/Database/Enums/DatabaseType.php b/src/Database/Enums/DatabaseType.php index 2e842699..48940940 100644 --- a/src/Database/Enums/DatabaseType.php +++ b/src/Database/Enums/DatabaseType.php @@ -12,6 +12,7 @@ /** * Class DatabaseType + * @package Quantum\Database * @codeCoverageIgnore */ final class DatabaseType diff --git a/src/Database/Enums/ExceptionMessages.php b/src/Database/Enums/ExceptionMessages.php index 1c8c6ea8..a5c1f656 100644 --- a/src/Database/Enums/ExceptionMessages.php +++ b/src/Database/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Database */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Database/Enums/Key.php b/src/Database/Enums/Key.php index 8df7fc78..9957155e 100644 --- a/src/Database/Enums/Key.php +++ b/src/Database/Enums/Key.php @@ -12,6 +12,7 @@ /** * Class Key + * @package Quantum\Database * @codeCoverageIgnore */ final class Key diff --git a/src/Database/Enums/Relation.php b/src/Database/Enums/Relation.php index 9bbacd8f..93d877e9 100644 --- a/src/Database/Enums/Relation.php +++ b/src/Database/Enums/Relation.php @@ -12,6 +12,7 @@ /** * Class Relation + * @package Quantum\Database * @codeCoverageIgnore */ final class Relation diff --git a/src/Database/Enums/Type.php b/src/Database/Enums/Type.php index 203596ba..bf24231e 100644 --- a/src/Database/Enums/Type.php +++ b/src/Database/Enums/Type.php @@ -12,6 +12,7 @@ /** * Class Type + * @package Quantum\Database * @codeCoverageIgnore */ final class Type diff --git a/src/Database/Exceptions/DatabaseException.php b/src/Database/Exceptions/DatabaseException.php index c6f791f9..5ba0bc90 100644 --- a/src/Database/Exceptions/DatabaseException.php +++ b/src/Database/Exceptions/DatabaseException.php @@ -15,6 +15,7 @@ /** * Class DatabaseException + * @package Quantum\Database */ class DatabaseException extends BaseException { diff --git a/src/Database/Factories/TableFactory.php b/src/Database/Factories/TableFactory.php index 504f3fa3..afcbb5b5 100644 --- a/src/Database/Factories/TableFactory.php +++ b/src/Database/Factories/TableFactory.php @@ -17,6 +17,7 @@ /** * Class TableFactory + * @package Quantum\Factory */ class TableFactory { diff --git a/src/Database/Schemas/Column.php b/src/Database/Schemas/Column.php index 09d04c97..a92ac134 100644 --- a/src/Database/Schemas/Column.php +++ b/src/Database/Schemas/Column.php @@ -14,6 +14,7 @@ /** * Class Column + * @package Quantum\Database */ class Column { diff --git a/src/Database/Schemas/Table.php b/src/Database/Schemas/Table.php index ead0a98f..01ad1337 100644 --- a/src/Database/Schemas/Table.php +++ b/src/Database/Schemas/Table.php @@ -18,6 +18,7 @@ /** * Class Table + * @package Quantum\Database * * @method self autoIncrement() * @method self primary() diff --git a/src/Database/Traits/RelationalTrait.php b/src/Database/Traits/RelationalTrait.php index 401715e8..8817ee6f 100644 --- a/src/Database/Traits/RelationalTrait.php +++ b/src/Database/Traits/RelationalTrait.php @@ -15,6 +15,7 @@ /** * Trait RelationalTrait + * @package Quantum\Database */ trait RelationalTrait { diff --git a/src/Database/Traits/TableTrait.php b/src/Database/Traits/TableTrait.php index 8290d97f..09c96b7a 100644 --- a/src/Database/Traits/TableTrait.php +++ b/src/Database/Traits/TableTrait.php @@ -15,6 +15,7 @@ /** * Trait TableTrait + * @package Quantum\Database */ trait TableTrait { diff --git a/src/Database/Traits/TransactionTrait.php b/src/Database/Traits/TransactionTrait.php index b6309c69..8cea2229 100644 --- a/src/Database/Traits/TransactionTrait.php +++ b/src/Database/Traits/TransactionTrait.php @@ -17,6 +17,7 @@ /** * Trait TransactionTrait + * @package Quantum\Database */ trait TransactionTrait { diff --git a/src/Debugger/Contracts/DebuggerStoreInterface.php b/src/Debugger/Contracts/DebuggerStoreInterface.php index 7cd0df0c..962f8b03 100644 --- a/src/Debugger/Contracts/DebuggerStoreInterface.php +++ b/src/Debugger/Contracts/DebuggerStoreInterface.php @@ -12,6 +12,7 @@ /** * Interface DebuggerStoreInterface + * @package Quantum\Debugger */ interface DebuggerStoreInterface { diff --git a/src/Debugger/Debugger.php b/src/Debugger/Debugger.php index 551fb2ed..bdd0adc6 100644 --- a/src/Debugger/Debugger.php +++ b/src/Debugger/Debugger.php @@ -23,6 +23,7 @@ /** * Class Debugger + * @package Quantum\Debugger * @uses DebugBar */ class Debugger diff --git a/src/Debugger/DebuggerStore.php b/src/Debugger/DebuggerStore.php index 65706424..f35fb860 100644 --- a/src/Debugger/DebuggerStore.php +++ b/src/Debugger/DebuggerStore.php @@ -14,6 +14,7 @@ /** * Class DebuggerStore + * @package Quantum\Debugger */ class DebuggerStore implements DebuggerStoreInterface { diff --git a/src/Di/Di.php b/src/Di/Di.php index 2813ef24..ccf56013 100644 --- a/src/Di/Di.php +++ b/src/Di/Di.php @@ -21,6 +21,7 @@ * owned by AppContext. Preserves the existing static API * for full backward compatibility. * + * @package Quantum/Di * @method static void registerDependencies(array $dependencies) * @method static void register(string $concrete, ?string $abstract = null) * @method static bool isRegistered(string $abstract) diff --git a/src/Di/DiContainer.php b/src/Di/DiContainer.php index dabcac00..e61f08b7 100644 --- a/src/Di/DiContainer.php +++ b/src/Di/DiContainer.php @@ -24,6 +24,7 @@ * Instance-based dependency injection container. * Holds all dependency registrations and resolved instances for a single application execution. * + * @package Quantum/Di */ class DiContainer { diff --git a/src/Di/DiRegistry.php b/src/Di/DiRegistry.php index 63b26a63..68489ed2 100644 --- a/src/Di/DiRegistry.php +++ b/src/Di/DiRegistry.php @@ -18,6 +18,7 @@ * * Stores dependency bindings for the container. * + * @package Quantum/Di */ class DiRegistry { diff --git a/src/Di/Enums/ExceptionMessages.php b/src/Di/Enums/ExceptionMessages.php index 290f553b..abf441dd 100644 --- a/src/Di/Enums/ExceptionMessages.php +++ b/src/Di/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Di */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Di/Exceptions/DiException.php b/src/Di/Exceptions/DiException.php index 553d9253..0483b915 100644 --- a/src/Di/Exceptions/DiException.php +++ b/src/Di/Exceptions/DiException.php @@ -15,6 +15,7 @@ /** * Class DiException + * @package Quantum\Di */ class DiException extends BaseException { diff --git a/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php b/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php index 342d1ac2..9a7182c4 100644 --- a/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php +++ b/src/Encryption/Adapters/AsymmetricEncryptionAdapter.php @@ -16,6 +16,7 @@ /** * Class AsymmetricEncryptionAdapter + * @package Quantum\Encryption */ class AsymmetricEncryptionAdapter implements EncryptionInterface { diff --git a/src/Encryption/Adapters/SymmetricEncryptionAdapter.php b/src/Encryption/Adapters/SymmetricEncryptionAdapter.php index 41af6f07..9f08b906 100644 --- a/src/Encryption/Adapters/SymmetricEncryptionAdapter.php +++ b/src/Encryption/Adapters/SymmetricEncryptionAdapter.php @@ -18,6 +18,7 @@ /** * Class SymmetricEncryptionAdapter + * @package Quantum\Encryption */ class SymmetricEncryptionAdapter implements EncryptionInterface { diff --git a/src/Encryption/Contracts/EncryptionInterface.php b/src/Encryption/Contracts/EncryptionInterface.php index ac239197..f1ae5027 100644 --- a/src/Encryption/Contracts/EncryptionInterface.php +++ b/src/Encryption/Contracts/EncryptionInterface.php @@ -12,6 +12,7 @@ /** * Interface EncryptionInterface + * @package Quantum\Encryption */ interface EncryptionInterface { diff --git a/src/Encryption/Cryptor.php b/src/Encryption/Cryptor.php index 11a4d23f..b38a01b7 100644 --- a/src/Encryption/Cryptor.php +++ b/src/Encryption/Cryptor.php @@ -17,6 +17,7 @@ /** * Class Cryptor + * @package Quantum\Encryption * @method string encrypt(string $plain) * @method string decrypt(string $encrypted) */ diff --git a/src/Encryption/Enums/CryptorType.php b/src/Encryption/Enums/CryptorType.php index bb11e9e4..cf28ac4a 100644 --- a/src/Encryption/Enums/CryptorType.php +++ b/src/Encryption/Enums/CryptorType.php @@ -12,6 +12,7 @@ /** * Class CryptorType + * @package Quantum\Encryption * @codeCoverageIgnore */ final class CryptorType diff --git a/src/Encryption/Enums/ExceptionMessages.php b/src/Encryption/Enums/ExceptionMessages.php index d8aed043..3a8e2ca8 100644 --- a/src/Encryption/Enums/ExceptionMessages.php +++ b/src/Encryption/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Encryption */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Encryption/Exceptions/CryptorException.php b/src/Encryption/Exceptions/CryptorException.php index b44f97ba..d0c36a66 100644 --- a/src/Encryption/Exceptions/CryptorException.php +++ b/src/Encryption/Exceptions/CryptorException.php @@ -15,6 +15,7 @@ /** * Class CryptorException + * @package Quantum\Encryption */ class CryptorException extends BaseException { diff --git a/src/Encryption/Factories/CryptorFactory.php b/src/Encryption/Factories/CryptorFactory.php index dfa4ef23..2be43272 100644 --- a/src/Encryption/Factories/CryptorFactory.php +++ b/src/Encryption/Factories/CryptorFactory.php @@ -21,6 +21,7 @@ /** * Class Cryptor + * @package Quantum\Encryption */ class CryptorFactory { diff --git a/src/Environment/Enums/Env.php b/src/Environment/Enums/Env.php index 980ac55f..f6cb37f3 100644 --- a/src/Environment/Enums/Env.php +++ b/src/Environment/Enums/Env.php @@ -12,6 +12,7 @@ /** * Class Env + * @package Quantum\Environment * @codeCoverageIgnore */ final class Env diff --git a/src/Environment/Enums/ExceptionMessages.php b/src/Environment/Enums/ExceptionMessages.php index 432686f5..a0abbcbb 100644 --- a/src/Environment/Enums/ExceptionMessages.php +++ b/src/Environment/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Environment */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Environment/Environment.php b/src/Environment/Environment.php index 3583b7f3..d90a8aac 100644 --- a/src/Environment/Environment.php +++ b/src/Environment/Environment.php @@ -24,6 +24,7 @@ /** * Class Environment + * @package Quantum\Environment * @uses Dotenv */ class Environment diff --git a/src/Environment/Exceptions/EnvException.php b/src/Environment/Exceptions/EnvException.php index ac0e0363..6fbc1187 100644 --- a/src/Environment/Exceptions/EnvException.php +++ b/src/Environment/Exceptions/EnvException.php @@ -15,6 +15,7 @@ /** * Class EnvException + * @package Quantum\Exceptions */ class EnvException extends BaseException { diff --git a/src/Environment/Server.php b/src/Environment/Server.php index e8d8eab3..9540040f 100644 --- a/src/Environment/Server.php +++ b/src/Environment/Server.php @@ -12,6 +12,7 @@ /** * Class Server + * @package Quantum\Environment */ class Server { diff --git a/src/Hasher/Enums/ExceptionMessages.php b/src/Hasher/Enums/ExceptionMessages.php index 590120e1..1c12b24d 100644 --- a/src/Hasher/Enums/ExceptionMessages.php +++ b/src/Hasher/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Hasher */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Hasher/Exceptions/HasherException.php b/src/Hasher/Exceptions/HasherException.php index 00ccd9da..6d1883ff 100644 --- a/src/Hasher/Exceptions/HasherException.php +++ b/src/Hasher/Exceptions/HasherException.php @@ -15,6 +15,7 @@ /** * Class HasherException + * @package Quantum\Hasher */ class HasherException extends BaseException { diff --git a/src/Hasher/Hasher.php b/src/Hasher/Hasher.php index eeeecefc..86131838 100644 --- a/src/Hasher/Hasher.php +++ b/src/Hasher/Hasher.php @@ -14,6 +14,7 @@ /** * Hasher class + * @package Quantum\Hasher */ class Hasher { diff --git a/src/Hook/Enums/ExceptionMessages.php b/src/Hook/Enums/ExceptionMessages.php index 99edff65..f7b3d674 100644 --- a/src/Hook/Enums/ExceptionMessages.php +++ b/src/Hook/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Hook */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Hook/Exceptions/HookException.php b/src/Hook/Exceptions/HookException.php index 74a8febf..9fa9b81b 100644 --- a/src/Hook/Exceptions/HookException.php +++ b/src/Hook/Exceptions/HookException.php @@ -15,6 +15,7 @@ /** * Class HookException + * @package Quantum\Exceptions */ class HookException extends BaseException { diff --git a/src/Hook/HookManager.php b/src/Hook/HookManager.php index c8367881..46e8cb42 100644 --- a/src/Hook/HookManager.php +++ b/src/Hook/HookManager.php @@ -19,6 +19,7 @@ /** * Class HookManager + * @package Quantum\Hooks */ class HookManager { diff --git a/src/Http/Enums/ContentType.php b/src/Http/Enums/ContentType.php index 23255b23..a21cd1a6 100644 --- a/src/Http/Enums/ContentType.php +++ b/src/Http/Enums/ContentType.php @@ -12,6 +12,7 @@ /** * Class ContentType + * @package Quantum\Http * @codeCoverageIgnore */ final class ContentType diff --git a/src/Http/Enums/StatusCode.php b/src/Http/Enums/StatusCode.php index a21ac6ae..484c58fb 100644 --- a/src/Http/Enums/StatusCode.php +++ b/src/Http/Enums/StatusCode.php @@ -12,6 +12,7 @@ /** * Class StatusCode + * @package Quantum\Http * @codeCoverageIgnore */ final class StatusCode diff --git a/src/Http/Exceptions/HttpException.php b/src/Http/Exceptions/HttpException.php index d01ce1ae..64ff6832 100644 --- a/src/Http/Exceptions/HttpException.php +++ b/src/Http/Exceptions/HttpException.php @@ -14,6 +14,7 @@ /** * Class HttpException + * @package Quantum\Http * @codeCoverageIgnore */ class HttpException extends BaseException diff --git a/src/Http/Request.php b/src/Http/Request.php index d5e1db52..c7ccc979 100644 --- a/src/Http/Request.php +++ b/src/Http/Request.php @@ -29,6 +29,7 @@ /** * Class Request + * @package Quantum\Http */ class Request { diff --git a/src/Http/Response.php b/src/Http/Response.php index 375de1e1..c1311f32 100644 --- a/src/Http/Response.php +++ b/src/Http/Response.php @@ -18,6 +18,7 @@ /** * Class Response + * @package Quantum\Http */ class Response { diff --git a/src/Http/Traits/Request/Body.php b/src/Http/Traits/Request/Body.php index 487cc3df..e4ea4cc3 100644 --- a/src/Http/Traits/Request/Body.php +++ b/src/Http/Traits/Request/Body.php @@ -15,6 +15,7 @@ /** * Trait Body + * @package Quantum\Http\Request */ trait Body { diff --git a/src/Http/Traits/Request/File.php b/src/Http/Traits/Request/File.php index d8b6491c..585f2ac4 100644 --- a/src/Http/Traits/Request/File.php +++ b/src/Http/Traits/Request/File.php @@ -16,6 +16,7 @@ /** * Trait File + * @package Quantum\Http\Request */ trait File { diff --git a/src/Http/Traits/Request/Header.php b/src/Http/Traits/Request/Header.php index 6ea0f1a3..34c968a8 100644 --- a/src/Http/Traits/Request/Header.php +++ b/src/Http/Traits/Request/Header.php @@ -12,6 +12,7 @@ /** * Trait Header + * @package Quantum\Http\Request */ trait Header { diff --git a/src/Http/Traits/Request/Internal.php b/src/Http/Traits/Request/Internal.php index 4e1f920c..99bb6193 100644 --- a/src/Http/Traits/Request/Internal.php +++ b/src/Http/Traits/Request/Internal.php @@ -19,6 +19,7 @@ /** * Trait Internal + * @package Quantum\Http\Request */ trait Internal { diff --git a/src/Http/Traits/Request/Params.php b/src/Http/Traits/Request/Params.php index b103db98..68432b6c 100644 --- a/src/Http/Traits/Request/Params.php +++ b/src/Http/Traits/Request/Params.php @@ -18,6 +18,7 @@ /** * Trait Params + * @package Quantum\Http\Request */ trait Params { diff --git a/src/Http/Traits/Request/Query.php b/src/Http/Traits/Request/Query.php index cbe0c51f..48275ebe 100644 --- a/src/Http/Traits/Request/Query.php +++ b/src/Http/Traits/Request/Query.php @@ -12,6 +12,7 @@ /** * Trait Query + * @package Quantum\Http\Request */ trait Query { diff --git a/src/Http/Traits/Request/RawInput.php b/src/Http/Traits/Request/RawInput.php index e71f2668..1d34d54e 100644 --- a/src/Http/Traits/Request/RawInput.php +++ b/src/Http/Traits/Request/RawInput.php @@ -20,6 +20,7 @@ /** * Class RawInput + * @package Quantum\Http */ trait RawInput { diff --git a/src/Http/Traits/Request/Route.php b/src/Http/Traits/Request/Route.php index b928a1a7..ed7a70c7 100644 --- a/src/Http/Traits/Request/Route.php +++ b/src/Http/Traits/Request/Route.php @@ -18,6 +18,7 @@ /** * Trait Route + * @package Quantum\Http\Request */ trait Route { diff --git a/src/Http/Traits/Request/Url.php b/src/Http/Traits/Request/Url.php index 46903ba0..0ce3d833 100644 --- a/src/Http/Traits/Request/Url.php +++ b/src/Http/Traits/Request/Url.php @@ -12,6 +12,7 @@ /** * Trait Url + * @package Quantum\Http\Request */ trait Url { diff --git a/src/Http/Traits/Response/Body.php b/src/Http/Traits/Response/Body.php index a5f905b7..e5180cd6 100644 --- a/src/Http/Traits/Response/Body.php +++ b/src/Http/Traits/Response/Body.php @@ -19,6 +19,7 @@ /** * Trait Body + * @package Quantum\Http\Response */ trait Body { diff --git a/src/Http/Traits/Response/Header.php b/src/Http/Traits/Response/Header.php index 987eb6e9..94d4f7a8 100644 --- a/src/Http/Traits/Response/Header.php +++ b/src/Http/Traits/Response/Header.php @@ -14,6 +14,7 @@ /** * Trait Header + * @package Quantum\Http\Response */ trait Header { diff --git a/src/Http/Traits/Response/Status.php b/src/Http/Traits/Response/Status.php index 2544aa13..ba7f6845 100644 --- a/src/Http/Traits/Response/Status.php +++ b/src/Http/Traits/Response/Status.php @@ -15,6 +15,7 @@ /** * Trait Status + * @package Quantum\Http\Response */ trait Status { diff --git a/src/HttpClient/Enums/ExceptionMessages.php b/src/HttpClient/Enums/ExceptionMessages.php index db962c0f..113549f1 100644 --- a/src/HttpClient/Enums/ExceptionMessages.php +++ b/src/HttpClient/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\HttpClient */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/HttpClient/Exceptions/HttpClientException.php b/src/HttpClient/Exceptions/HttpClientException.php index 463769ae..205aac5b 100644 --- a/src/HttpClient/Exceptions/HttpClientException.php +++ b/src/HttpClient/Exceptions/HttpClientException.php @@ -15,6 +15,7 @@ /** * Class HasherException + * @package Quantum\Hasher */ class HttpClientException extends BaseException { diff --git a/src/HttpClient/HttpClient.php b/src/HttpClient/HttpClient.php index 9e1a64ee..b864b3d2 100644 --- a/src/HttpClient/HttpClient.php +++ b/src/HttpClient/HttpClient.php @@ -19,6 +19,7 @@ /** * HttpClient Class + * @package Quantum\HttpClient * @uses php-curl-class/php-curl-class * @method object addGet(string $url, array $data = []) * @method object addPost(string $url, string $data = '', bool $follow_303_with_post = false) diff --git a/src/Jwt/Enums/ExceptionMessages.php b/src/Jwt/Enums/ExceptionMessages.php index bafe73f8..eadad9c2 100644 --- a/src/Jwt/Enums/ExceptionMessages.php +++ b/src/Jwt/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Jwt */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Jwt/Exceptions/JwtException.php b/src/Jwt/Exceptions/JwtException.php index 1604a343..8eab1e06 100644 --- a/src/Jwt/Exceptions/JwtException.php +++ b/src/Jwt/Exceptions/JwtException.php @@ -15,6 +15,7 @@ /** * Class JwtException + * @package Quantum\JwtToken */ class JwtException extends BaseException { diff --git a/src/Jwt/JwtToken.php b/src/Jwt/JwtToken.php index c649fec0..62a4b50c 100644 --- a/src/Jwt/JwtToken.php +++ b/src/Jwt/JwtToken.php @@ -17,6 +17,7 @@ /** * Class JwtToken + * @package Quantum\JwtToken * @uses JWT */ class JwtToken extends JWT diff --git a/src/Lang/Enums/ExceptionMessages.php b/src/Lang/Enums/ExceptionMessages.php index 8f1af25f..a3e456ca 100644 --- a/src/Lang/Enums/ExceptionMessages.php +++ b/src/Lang/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Lang */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Lang/Exceptions/LangException.php b/src/Lang/Exceptions/LangException.php index 97fc1898..219ece40 100644 --- a/src/Lang/Exceptions/LangException.php +++ b/src/Lang/Exceptions/LangException.php @@ -15,6 +15,7 @@ /** * Class LangException + * @package Quantum\Lang */ class LangException extends BaseException { diff --git a/src/Lang/Factories/LangFactory.php b/src/Lang/Factories/LangFactory.php index 15c11627..7afd5c81 100644 --- a/src/Lang/Factories/LangFactory.php +++ b/src/Lang/Factories/LangFactory.php @@ -22,6 +22,7 @@ /** * Class LangFactory + * @package Quantum\Lang */ class LangFactory { diff --git a/src/Lang/Lang.php b/src/Lang/Lang.php index 79df97db..84b6df12 100644 --- a/src/Lang/Lang.php +++ b/src/Lang/Lang.php @@ -19,6 +19,7 @@ /** * Class Lang + * @package Quantum\Lang */ class Lang { diff --git a/src/Lang/Translator.php b/src/Lang/Translator.php index 5a701773..aef2dd5c 100644 --- a/src/Lang/Translator.php +++ b/src/Lang/Translator.php @@ -20,6 +20,7 @@ /** * Class Translator + * @package Quantum\Lang */ class Translator { diff --git a/src/Loader/Exceptions/LoaderException.php b/src/Loader/Exceptions/LoaderException.php index 8f9fe99c..798ba36b 100644 --- a/src/Loader/Exceptions/LoaderException.php +++ b/src/Loader/Exceptions/LoaderException.php @@ -15,6 +15,7 @@ /** * DatabaseException class * + * @package Quantum * @category Exceptions * @codeCoverageIgnore */ diff --git a/src/Loader/Loader.php b/src/Loader/Loader.php index ef66588b..dc6fb597 100644 --- a/src/Loader/Loader.php +++ b/src/Loader/Loader.php @@ -15,6 +15,7 @@ /** * Class Loader + * @package Quantum\Loader */ class Loader { diff --git a/src/Loader/Setup.php b/src/Loader/Setup.php index 71df96b1..e3ef1b73 100644 --- a/src/Loader/Setup.php +++ b/src/Loader/Setup.php @@ -15,6 +15,7 @@ /** * Class Setup + * @package Quantum\Loader */ class Setup { diff --git a/src/Logger/Adapters/DailyAdapter.php b/src/Logger/Adapters/DailyAdapter.php index 2dd1b9bc..723a3f30 100644 --- a/src/Logger/Adapters/DailyAdapter.php +++ b/src/Logger/Adapters/DailyAdapter.php @@ -21,6 +21,7 @@ /** * Class DailyAdapter + * @package Quantum\Logger */ class DailyAdapter implements ReportableInterface { diff --git a/src/Logger/Adapters/MessageAdapter.php b/src/Logger/Adapters/MessageAdapter.php index 5fce4d9b..53ca913c 100644 --- a/src/Logger/Adapters/MessageAdapter.php +++ b/src/Logger/Adapters/MessageAdapter.php @@ -15,6 +15,7 @@ /** * Class MessageAdapter + * @package Quantum\Logger */ class MessageAdapter implements ReportableInterface { diff --git a/src/Logger/Adapters/SingleAdapter.php b/src/Logger/Adapters/SingleAdapter.php index 4f1017a3..9b2532b1 100644 --- a/src/Logger/Adapters/SingleAdapter.php +++ b/src/Logger/Adapters/SingleAdapter.php @@ -21,6 +21,7 @@ /** * Class SingleAdapter + * @package Quantum\Logger */ class SingleAdapter implements ReportableInterface { diff --git a/src/Logger/Contracts/ReportableInterface.php b/src/Logger/Contracts/ReportableInterface.php index 793878bb..a63661a2 100644 --- a/src/Logger/Contracts/ReportableInterface.php +++ b/src/Logger/Contracts/ReportableInterface.php @@ -12,6 +12,7 @@ /** * Interface ReportableInterface + * @package Quantum\Logger */ interface ReportableInterface { diff --git a/src/Logger/Enums/ExceptionMessages.php b/src/Logger/Enums/ExceptionMessages.php index f5d9ebe5..dc6001ff 100644 --- a/src/Logger/Enums/ExceptionMessages.php +++ b/src/Logger/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Logger */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Logger/Enums/LoggerType.php b/src/Logger/Enums/LoggerType.php index 6d55cd0d..57b06a54 100644 --- a/src/Logger/Enums/LoggerType.php +++ b/src/Logger/Enums/LoggerType.php @@ -12,6 +12,7 @@ /** * Class LoggerType + * @package Quantum\Logger * @codeCoverageIgnore */ final class LoggerType diff --git a/src/Logger/Exceptions/LoggerException.php b/src/Logger/Exceptions/LoggerException.php index 9ac3e9d4..ec703c92 100644 --- a/src/Logger/Exceptions/LoggerException.php +++ b/src/Logger/Exceptions/LoggerException.php @@ -15,6 +15,7 @@ /** * Class LoggerException + * @package Quantum\Logger */ class LoggerException extends BaseException { diff --git a/src/Logger/Factories/LoggerFactory.php b/src/Logger/Factories/LoggerFactory.php index f1f4f12f..a9d431c1 100644 --- a/src/Logger/Factories/LoggerFactory.php +++ b/src/Logger/Factories/LoggerFactory.php @@ -27,6 +27,7 @@ /** * Class LoggerFactory + * @package Quantum\Logger */ class LoggerFactory { diff --git a/src/Logger/Logger.php b/src/Logger/Logger.php index 8dd5d371..deb91fdf 100644 --- a/src/Logger/Logger.php +++ b/src/Logger/Logger.php @@ -16,6 +16,7 @@ /** * Class Logger + * @package Quantum\Logger */ class Logger implements LoggerInterface { diff --git a/src/Logger/LoggerConfig.php b/src/Logger/LoggerConfig.php index f4c2be28..000fb65f 100644 --- a/src/Logger/LoggerConfig.php +++ b/src/Logger/LoggerConfig.php @@ -12,6 +12,7 @@ /** * Class LoggerConfig + * @package Quantum\Logger */ class LoggerConfig { diff --git a/src/Logger/Traits/LoggerTrait.php b/src/Logger/Traits/LoggerTrait.php index c9ebdb48..d69c0289 100644 --- a/src/Logger/Traits/LoggerTrait.php +++ b/src/Logger/Traits/LoggerTrait.php @@ -15,6 +15,7 @@ /** * Trait LoggerTrait + * @package Quantum\Logger */ trait LoggerTrait { diff --git a/src/Mailer/Adapters/MailgunAdapter.php b/src/Mailer/Adapters/MailgunAdapter.php index de37ccb8..6acafb42 100644 --- a/src/Mailer/Adapters/MailgunAdapter.php +++ b/src/Mailer/Adapters/MailgunAdapter.php @@ -17,6 +17,7 @@ /** * class MailgunAdapter + * @package Quantum\Mailer */ class MailgunAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/MandrillAdapter.php b/src/Mailer/Adapters/MandrillAdapter.php index 192e8393..5d246218 100644 --- a/src/Mailer/Adapters/MandrillAdapter.php +++ b/src/Mailer/Adapters/MandrillAdapter.php @@ -17,6 +17,7 @@ /** * class MandrillAdapter + * @package Quantum\Mailer */ class MandrillAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/ResendAdapter.php b/src/Mailer/Adapters/ResendAdapter.php index 2a1877a7..75f75fe3 100644 --- a/src/Mailer/Adapters/ResendAdapter.php +++ b/src/Mailer/Adapters/ResendAdapter.php @@ -17,6 +17,7 @@ /** * class ResendAdapter + * @package Quantum\Mailer */ class ResendAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/SendgridAdapter.php b/src/Mailer/Adapters/SendgridAdapter.php index f263fd72..40259af6 100644 --- a/src/Mailer/Adapters/SendgridAdapter.php +++ b/src/Mailer/Adapters/SendgridAdapter.php @@ -17,6 +17,7 @@ /** * class SendgridAdapter + * @package Quantum\Mailer */ class SendgridAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/SendinblueAdapter.php b/src/Mailer/Adapters/SendinblueAdapter.php index eb948c3a..600d87a2 100644 --- a/src/Mailer/Adapters/SendinblueAdapter.php +++ b/src/Mailer/Adapters/SendinblueAdapter.php @@ -17,6 +17,7 @@ /** * class SendinblueAdapter + * @package Quantum\Mailer */ class SendinblueAdapter implements MailerInterface { diff --git a/src/Mailer/Adapters/SmtpAdapter.php b/src/Mailer/Adapters/SmtpAdapter.php index 2881fb4b..4f2c6dff 100644 --- a/src/Mailer/Adapters/SmtpAdapter.php +++ b/src/Mailer/Adapters/SmtpAdapter.php @@ -21,6 +21,7 @@ /** * class SmtpAdapter + * @package Quantum\Mailer */ class SmtpAdapter implements MailerInterface { diff --git a/src/Mailer/Contracts/MailerInterface.php b/src/Mailer/Contracts/MailerInterface.php index 498d18a1..e20caa91 100644 --- a/src/Mailer/Contracts/MailerInterface.php +++ b/src/Mailer/Contracts/MailerInterface.php @@ -12,6 +12,7 @@ /** * Interface MailerInterface + * @package Quantum\Mailer */ interface MailerInterface { diff --git a/src/Mailer/Enums/MailerType.php b/src/Mailer/Enums/MailerType.php index cc6dbae0..0fbf2276 100644 --- a/src/Mailer/Enums/MailerType.php +++ b/src/Mailer/Enums/MailerType.php @@ -12,6 +12,7 @@ /** * Class MailerType + * @package Quantum\Mailer * @codeCoverageIgnore */ final class MailerType diff --git a/src/Mailer/Exceptions/MailerException.php b/src/Mailer/Exceptions/MailerException.php index 700e1f67..01cfd1a1 100644 --- a/src/Mailer/Exceptions/MailerException.php +++ b/src/Mailer/Exceptions/MailerException.php @@ -14,6 +14,7 @@ /** * Class MailerException + * @package Quantum\Mailer * @codeCoverageIgnore */ class MailerException extends BaseException diff --git a/src/Mailer/Factories/MailerFactory.php b/src/Mailer/Factories/MailerFactory.php index 6ae34965..6b1b1919 100644 --- a/src/Mailer/Factories/MailerFactory.php +++ b/src/Mailer/Factories/MailerFactory.php @@ -29,6 +29,7 @@ /** * class MailerFactory + * @package Quantum\Mailer */ class MailerFactory { diff --git a/src/Mailer/MailTrap.php b/src/Mailer/MailTrap.php index ca9357d9..5bb8a9fc 100644 --- a/src/Mailer/MailTrap.php +++ b/src/Mailer/MailTrap.php @@ -23,6 +23,7 @@ /** * class MailTrap + * @package Quantum\Mailer */ class MailTrap { diff --git a/src/Mailer/Mailer.php b/src/Mailer/Mailer.php index 45dc020c..a7372d66 100644 --- a/src/Mailer/Mailer.php +++ b/src/Mailer/Mailer.php @@ -16,6 +16,7 @@ /** * Class Mailer + * @package Quantum\Mailer * @method MailerInterface setFrom(string $email, ?string $name = null) * @method array getFrom() * @method MailerInterface setAddress(string $email, ?string $name = null) diff --git a/src/Mailer/Traits/MailerTrait.php b/src/Mailer/Traits/MailerTrait.php index 2c3f4e12..17a2b14b 100644 --- a/src/Mailer/Traits/MailerTrait.php +++ b/src/Mailer/Traits/MailerTrait.php @@ -20,6 +20,7 @@ /** * trait MailerTrait + * @package Quantum\Mailer */ trait MailerTrait { diff --git a/src/Middleware/Enums/ExceptionMessages.php b/src/Middleware/Enums/ExceptionMessages.php index db18846d..eb4b84fc 100644 --- a/src/Middleware/Enums/ExceptionMessages.php +++ b/src/Middleware/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Middleware */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Middleware/Exceptions/MiddlewareException.php b/src/Middleware/Exceptions/MiddlewareException.php index 3d7a45a8..cae3305a 100644 --- a/src/Middleware/Exceptions/MiddlewareException.php +++ b/src/Middleware/Exceptions/MiddlewareException.php @@ -15,6 +15,7 @@ /** * Class MiddlewareException + * @package Quantum\Exceptions */ class MiddlewareException extends BaseException { diff --git a/src/Middleware/Middleware.php b/src/Middleware/Middleware.php index d39408f1..12983475 100644 --- a/src/Middleware/Middleware.php +++ b/src/Middleware/Middleware.php @@ -16,6 +16,7 @@ /** * Class Middleware + * @package Quantum\Middleware */ abstract class Middleware { diff --git a/src/Middleware/MiddlewareManager.php b/src/Middleware/MiddlewareManager.php index 6e9e5d28..b57f2124 100644 --- a/src/Middleware/MiddlewareManager.php +++ b/src/Middleware/MiddlewareManager.php @@ -21,6 +21,7 @@ /** * Class MiddlewareManager + * @package Quantum\Middleware */ class MiddlewareManager { diff --git a/src/Migration/Enums/ExceptionMessages.php b/src/Migration/Enums/ExceptionMessages.php index c8e90d24..c2117585 100644 --- a/src/Migration/Enums/ExceptionMessages.php +++ b/src/Migration/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Migration */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Migration/Exceptions/MigrationException.php b/src/Migration/Exceptions/MigrationException.php index 19289227..d2192b87 100644 --- a/src/Migration/Exceptions/MigrationException.php +++ b/src/Migration/Exceptions/MigrationException.php @@ -16,6 +16,7 @@ /** * MigrationException class * + * @package Quantum * @category Exceptions */ class MigrationException extends BaseException diff --git a/src/Migration/Migration.php b/src/Migration/Migration.php index c7ebe460..93290552 100644 --- a/src/Migration/Migration.php +++ b/src/Migration/Migration.php @@ -14,6 +14,7 @@ /** * Class Migration + * @package Quantum\Migration */ abstract class Migration { diff --git a/src/Migration/MigrationManager.php b/src/Migration/MigrationManager.php index ab123fcd..0221fc3d 100644 --- a/src/Migration/MigrationManager.php +++ b/src/Migration/MigrationManager.php @@ -25,6 +25,7 @@ /** * Class MigrationManager + * @package Quantum\Migration */ class MigrationManager { diff --git a/src/Migration/MigrationTable.php b/src/Migration/MigrationTable.php index 94a32220..c0b5849c 100644 --- a/src/Migration/MigrationTable.php +++ b/src/Migration/MigrationTable.php @@ -16,6 +16,7 @@ /** * Class MigrationTable + * @package Quantum\Migration */ class MigrationTable extends Migration { diff --git a/src/Migration/Templates/MigrationTemplate.php b/src/Migration/Templates/MigrationTemplate.php index b0833b0d..d385ef6f 100644 --- a/src/Migration/Templates/MigrationTemplate.php +++ b/src/Migration/Templates/MigrationTemplate.php @@ -12,6 +12,7 @@ /** * Class MigrationTable + * @package Quantum\Migration */ class MigrationTemplate { diff --git a/src/Model/DbModel.php b/src/Model/DbModel.php index ff41c17a..06a4508d 100644 --- a/src/Model/DbModel.php +++ b/src/Model/DbModel.php @@ -20,6 +20,7 @@ /** * Class DbModel + * @package Quantum\Model * * @method string getTable() * @method string getModelName() diff --git a/src/Model/Enums/ExceptionMessages.php b/src/Model/Enums/ExceptionMessages.php index 626e0404..c8a43d03 100644 --- a/src/Model/Enums/ExceptionMessages.php +++ b/src/Model/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Model */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Model/Exceptions/ModelException.php b/src/Model/Exceptions/ModelException.php index 9932eecb..4a6b5f67 100644 --- a/src/Model/Exceptions/ModelException.php +++ b/src/Model/Exceptions/ModelException.php @@ -15,6 +15,7 @@ /** * Class ModelException + * @package Quantum\Model */ class ModelException extends BaseException { diff --git a/src/Model/Factories/ModelFactory.php b/src/Model/Factories/ModelFactory.php index f2497916..8549ce94 100644 --- a/src/Model/Factories/ModelFactory.php +++ b/src/Model/Factories/ModelFactory.php @@ -20,6 +20,7 @@ /** * Class ModelFactory + * @package Quantum\Model */ class ModelFactory { diff --git a/src/Model/Model.php b/src/Model/Model.php index 3db66719..3c3d65f2 100644 --- a/src/Model/Model.php +++ b/src/Model/Model.php @@ -14,6 +14,7 @@ /** * Class Model + * @package Quantum\Model */ abstract class Model { diff --git a/src/Model/ModelCollection.php b/src/Model/ModelCollection.php index 1b988c1e..86581879 100644 --- a/src/Model/ModelCollection.php +++ b/src/Model/ModelCollection.php @@ -18,6 +18,7 @@ /** * Class ModelCollection + * @package Quantum\Model * @template TKey of array-key * @template TValue of Model * @implements IteratorAggregate diff --git a/src/Model/Traits/SoftDeletes.php b/src/Model/Traits/SoftDeletes.php index 8482f50b..7a33b48b 100644 --- a/src/Model/Traits/SoftDeletes.php +++ b/src/Model/Traits/SoftDeletes.php @@ -19,6 +19,7 @@ /** * Trait SoftDeletes + * @package Quantum\Model */ trait SoftDeletes { diff --git a/src/Module/Enums/ExceptionMessages.php b/src/Module/Enums/ExceptionMessages.php index 61bf270e..95c69502 100644 --- a/src/Module/Enums/ExceptionMessages.php +++ b/src/Module/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Module */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Module/Exceptions/ModuleException.php b/src/Module/Exceptions/ModuleException.php index 0ca7b874..1d5a9e33 100644 --- a/src/Module/Exceptions/ModuleException.php +++ b/src/Module/Exceptions/ModuleException.php @@ -14,6 +14,7 @@ /** * Class ModuleLoaderException + * @package Quantum\Module */ class ModuleException extends \Exception { diff --git a/src/Module/ModuleLoader.php b/src/Module/ModuleLoader.php index 8c60dd52..7a57b15e 100644 --- a/src/Module/ModuleLoader.php +++ b/src/Module/ModuleLoader.php @@ -24,6 +24,7 @@ /** * Class ModuleLoader + * @package Quantum\Module */ class ModuleLoader { diff --git a/src/Module/ModuleManager.php b/src/Module/ModuleManager.php index f6be5f39..28b6de81 100644 --- a/src/Module/ModuleManager.php +++ b/src/Module/ModuleManager.php @@ -23,6 +23,7 @@ /** * Class ModuleManager + * @package Quantum\Module */ class ModuleManager { diff --git a/src/Paginator/Adapters/ArrayPaginator.php b/src/Paginator/Adapters/ArrayPaginator.php index 3eb03262..e54f3894 100644 --- a/src/Paginator/Adapters/ArrayPaginator.php +++ b/src/Paginator/Adapters/ArrayPaginator.php @@ -17,6 +17,7 @@ /** * Class ArrayPaginator + * @package Quantum\Paginator */ class ArrayPaginator implements PaginatorInterface { diff --git a/src/Paginator/Adapters/ModelPaginator.php b/src/Paginator/Adapters/ModelPaginator.php index 408aae4d..54fb4a1c 100644 --- a/src/Paginator/Adapters/ModelPaginator.php +++ b/src/Paginator/Adapters/ModelPaginator.php @@ -22,6 +22,7 @@ /** * Class ModelPaginator + * @package Quantum\Paginator */ class ModelPaginator implements PaginatorInterface { diff --git a/src/Paginator/Contracts/PaginatorInterface.php b/src/Paginator/Contracts/PaginatorInterface.php index ba936f09..a0edd948 100644 --- a/src/Paginator/Contracts/PaginatorInterface.php +++ b/src/Paginator/Contracts/PaginatorInterface.php @@ -12,6 +12,7 @@ /** * Paginator interface + * @package Quantum\Paginator */ interface PaginatorInterface { diff --git a/src/Paginator/Enums/ExceptionMessages.php b/src/Paginator/Enums/ExceptionMessages.php index f876e2d1..99bb971a 100644 --- a/src/Paginator/Enums/ExceptionMessages.php +++ b/src/Paginator/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Paginator */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Paginator/Enums/Pagination.php b/src/Paginator/Enums/Pagination.php index 1ed40d4d..b20faa17 100644 --- a/src/Paginator/Enums/Pagination.php +++ b/src/Paginator/Enums/Pagination.php @@ -12,6 +12,7 @@ /** * Class Pagination + * @package Quantum\Paginator * @codeCoverageIgnore */ final class Pagination diff --git a/src/Paginator/Enums/PaginatorType.php b/src/Paginator/Enums/PaginatorType.php index b59a1c26..afdeeb5c 100644 --- a/src/Paginator/Enums/PaginatorType.php +++ b/src/Paginator/Enums/PaginatorType.php @@ -12,6 +12,7 @@ /** * Class PaginatorType + * @package Quantum\Paginator * @codeCoverageIgnore */ final class PaginatorType diff --git a/src/Paginator/Exceptions/PaginatorException.php b/src/Paginator/Exceptions/PaginatorException.php index 77f4c190..6c7b7532 100644 --- a/src/Paginator/Exceptions/PaginatorException.php +++ b/src/Paginator/Exceptions/PaginatorException.php @@ -15,6 +15,7 @@ /** * Class PaginatorException + * @package Quantum\Paginator */ class PaginatorException extends BaseException { diff --git a/src/Paginator/Factories/PaginatorFactory.php b/src/Paginator/Factories/PaginatorFactory.php index 7cfa2003..03ff0401 100644 --- a/src/Paginator/Factories/PaginatorFactory.php +++ b/src/Paginator/Factories/PaginatorFactory.php @@ -19,6 +19,7 @@ /** * Class PaginatorFactory + * @package Quantum\Paginator */ class PaginatorFactory { diff --git a/src/Paginator/Paginator.php b/src/Paginator/Paginator.php index f25bc998..50a51ab7 100644 --- a/src/Paginator/Paginator.php +++ b/src/Paginator/Paginator.php @@ -16,6 +16,7 @@ /** * Class Paginator + * @package Quantum\Paginator * @method mixed data() * @method mixed firstItem() * @method mixed lastItem() diff --git a/src/Paginator/Traits/PaginatorTrait.php b/src/Paginator/Traits/PaginatorTrait.php index 43c8ba24..5bd25856 100644 --- a/src/Paginator/Traits/PaginatorTrait.php +++ b/src/Paginator/Traits/PaginatorTrait.php @@ -19,6 +19,7 @@ /** * Trait PaginatorTrait + * @package Quantum\Paginator */ trait PaginatorTrait { diff --git a/src/RateLimit/Adapters/FileRateLimitAdapter.php b/src/RateLimit/Adapters/FileRateLimitAdapter.php index b73483ed..766892ac 100644 --- a/src/RateLimit/Adapters/FileRateLimitAdapter.php +++ b/src/RateLimit/Adapters/FileRateLimitAdapter.php @@ -19,6 +19,7 @@ /** * Class FileRateLimitAdapter + * @package Quantum\RateLimit */ class FileRateLimitAdapter implements RateLimitAdapterInterface { diff --git a/src/RateLimit/Adapters/RedisRateLimitAdapter.php b/src/RateLimit/Adapters/RedisRateLimitAdapter.php index a7a197d3..7796ee45 100644 --- a/src/RateLimit/Adapters/RedisRateLimitAdapter.php +++ b/src/RateLimit/Adapters/RedisRateLimitAdapter.php @@ -16,6 +16,7 @@ /** * Class RedisRateLimitAdapter + * @package Quantum\RateLimit */ class RedisRateLimitAdapter implements RateLimitAdapterInterface { diff --git a/src/RateLimit/Contracts/RateLimitAdapterInterface.php b/src/RateLimit/Contracts/RateLimitAdapterInterface.php index 42b990de..0890d263 100644 --- a/src/RateLimit/Contracts/RateLimitAdapterInterface.php +++ b/src/RateLimit/Contracts/RateLimitAdapterInterface.php @@ -12,6 +12,7 @@ /** * Interface RateLimitAdapterInterface + * @package Quantum\RateLimit */ interface RateLimitAdapterInterface { diff --git a/src/RateLimit/Enums/ExceptionMessages.php b/src/RateLimit/Enums/ExceptionMessages.php index 62793005..d94f95a8 100644 --- a/src/RateLimit/Enums/ExceptionMessages.php +++ b/src/RateLimit/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\RateLimit */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/RateLimit/Enums/RateLimitType.php b/src/RateLimit/Enums/RateLimitType.php index 874d1bf4..26fe60be 100644 --- a/src/RateLimit/Enums/RateLimitType.php +++ b/src/RateLimit/Enums/RateLimitType.php @@ -12,6 +12,7 @@ /** * Class RateLimitType + * @package Quantum\RateLimit * @codeCoverageIgnore */ final class RateLimitType diff --git a/src/RateLimit/Exceptions/RateLimitException.php b/src/RateLimit/Exceptions/RateLimitException.php index b83764f8..8680084f 100644 --- a/src/RateLimit/Exceptions/RateLimitException.php +++ b/src/RateLimit/Exceptions/RateLimitException.php @@ -15,6 +15,7 @@ /** * Class RateLimitException + * @package Quantum\RateLimit */ class RateLimitException extends BaseException { diff --git a/src/RateLimit/Factories/RateLimiterFactory.php b/src/RateLimit/Factories/RateLimiterFactory.php index 7b27a0f9..92b61e10 100644 --- a/src/RateLimit/Factories/RateLimiterFactory.php +++ b/src/RateLimit/Factories/RateLimiterFactory.php @@ -25,6 +25,7 @@ /** * Class RateLimiterFactory + * @package Quantum\RateLimit */ class RateLimiterFactory { diff --git a/src/RateLimit/RateLimitMiddleware.php b/src/RateLimit/RateLimitMiddleware.php index 7e463358..b4d30c14 100644 --- a/src/RateLimit/RateLimitMiddleware.php +++ b/src/RateLimit/RateLimitMiddleware.php @@ -20,6 +20,7 @@ /** * Class RateLimitMiddleware + * @package Quantum\RateLimit */ class RateLimitMiddleware extends Middleware { diff --git a/src/RateLimit/RateLimiter.php b/src/RateLimit/RateLimiter.php index cebf36db..3c593077 100644 --- a/src/RateLimit/RateLimiter.php +++ b/src/RateLimit/RateLimiter.php @@ -14,6 +14,7 @@ /** * Class RateLimiter + * @package Quantum\RateLimit */ class RateLimiter { diff --git a/src/Renderer/Adapters/HtmlAdapter.php b/src/Renderer/Adapters/HtmlAdapter.php index 53c7c34c..4a98f4db 100644 --- a/src/Renderer/Adapters/HtmlAdapter.php +++ b/src/Renderer/Adapters/HtmlAdapter.php @@ -21,6 +21,7 @@ /** * Class HtmlAdapter + * @package Quantum\Renderer */ class HtmlAdapter implements TemplateRendererInterface { diff --git a/src/Renderer/Adapters/TwigAdapter.php b/src/Renderer/Adapters/TwigAdapter.php index a3f16d85..ee2a46f0 100644 --- a/src/Renderer/Adapters/TwigAdapter.php +++ b/src/Renderer/Adapters/TwigAdapter.php @@ -27,6 +27,7 @@ /** * Class TwigAdapter + * @package Quantum\Renderer */ class TwigAdapter implements TemplateRendererInterface { diff --git a/src/Renderer/Contracts/TemplateRendererInterface.php b/src/Renderer/Contracts/TemplateRendererInterface.php index 46798497..9698e2c6 100644 --- a/src/Renderer/Contracts/TemplateRendererInterface.php +++ b/src/Renderer/Contracts/TemplateRendererInterface.php @@ -12,6 +12,7 @@ /** * Interface TemplateRendererInterface + * @package Quantum\Renderer */ interface TemplateRendererInterface { diff --git a/src/Renderer/Enums/RendererType.php b/src/Renderer/Enums/RendererType.php index ff21de4e..f6ff6a54 100644 --- a/src/Renderer/Enums/RendererType.php +++ b/src/Renderer/Enums/RendererType.php @@ -12,6 +12,7 @@ /** * Class RendererType + * @package Quantum\Renderer * @codeCoverageIgnore */ final class RendererType diff --git a/src/Renderer/Exceptions/RendererException.php b/src/Renderer/Exceptions/RendererException.php index d451d7d9..2f8b06e2 100644 --- a/src/Renderer/Exceptions/RendererException.php +++ b/src/Renderer/Exceptions/RendererException.php @@ -14,6 +14,7 @@ /** * Class RendererException + * @package Quantum\Renderer * @codeCoverageIgnore */ class RendererException extends BaseException diff --git a/src/Renderer/Factories/RendererFactory.php b/src/Renderer/Factories/RendererFactory.php index 1d7b19a3..5c1e86ee 100644 --- a/src/Renderer/Factories/RendererFactory.php +++ b/src/Renderer/Factories/RendererFactory.php @@ -25,6 +25,7 @@ /** * Class RendererFactory + * @package Quantum\Renderer */ class RendererFactory { diff --git a/src/Renderer/Renderer.php b/src/Renderer/Renderer.php index 3cbebd0b..bf5e5040 100644 --- a/src/Renderer/Renderer.php +++ b/src/Renderer/Renderer.php @@ -16,6 +16,7 @@ /** * Class Renderer + * @package Quantum\Renderer * @method string render(string $view, array $params = []) */ class Renderer diff --git a/src/ResourceCache/Exceptions/ResourceCacheException.php b/src/ResourceCache/Exceptions/ResourceCacheException.php index f93033bb..3be27021 100644 --- a/src/ResourceCache/Exceptions/ResourceCacheException.php +++ b/src/ResourceCache/Exceptions/ResourceCacheException.php @@ -14,6 +14,7 @@ /** * Class ResourceCacheException + * @package Quantum\ResourceCache * @codeCoverageIgnore */ class ResourceCacheException extends BaseException diff --git a/src/ResourceCache/ViewCache.php b/src/ResourceCache/ViewCache.php index 003ec01f..2267ad96 100644 --- a/src/ResourceCache/ViewCache.php +++ b/src/ResourceCache/ViewCache.php @@ -25,6 +25,7 @@ /** * ViewCache class + * @package Quantum\ResourceCache */ class ViewCache { diff --git a/src/Router/Enums/ExceptionMessages.php b/src/Router/Enums/ExceptionMessages.php index bf65bce3..2dff1542 100644 --- a/src/Router/Enums/ExceptionMessages.php +++ b/src/Router/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Router */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Router/Exceptions/RouteException.php b/src/Router/Exceptions/RouteException.php index 95bf8cf4..afd82ebf 100644 --- a/src/Router/Exceptions/RouteException.php +++ b/src/Router/Exceptions/RouteException.php @@ -15,6 +15,7 @@ /** * Class RouteException + * @package Quantum\Exceptions */ class RouteException extends BaseException { diff --git a/src/Router/MatchedRoute.php b/src/Router/MatchedRoute.php index 1ba8a9df..47cdd9c7 100644 --- a/src/Router/MatchedRoute.php +++ b/src/Router/MatchedRoute.php @@ -13,6 +13,7 @@ /** * Class MatchedRoute * @internal Resolves an incoming request to a matched route. + * @package Quantum\Router */ final class MatchedRoute { diff --git a/src/Router/PatternCompiler.php b/src/Router/PatternCompiler.php index eae13184..59992bca 100644 --- a/src/Router/PatternCompiler.php +++ b/src/Router/PatternCompiler.php @@ -15,6 +15,7 @@ /** * Class PatternCompiler * @internal Compiles and matches route patterns against request URIs. + * @package Quantum\Router */ class PatternCompiler { diff --git a/src/Router/Route.php b/src/Router/Route.php index 166ca8af..1c4d7fed 100644 --- a/src/Router/Route.php +++ b/src/Router/Route.php @@ -17,6 +17,7 @@ /** * Class Route * @internal Framework routing descriptor. + * @package Quantum\Router */ final class Route { diff --git a/src/Router/RouteBuilder.php b/src/Router/RouteBuilder.php index 3ff83cd5..cb127e6d 100644 --- a/src/Router/RouteBuilder.php +++ b/src/Router/RouteBuilder.php @@ -16,6 +16,7 @@ /** * Class RouteBuilder * @internal Fluent DSL interpreter and route composition engine. + * @package Quantum\Router */ final class RouteBuilder { diff --git a/src/Router/RouteCollection.php b/src/Router/RouteCollection.php index c1dc040c..f0f7f74d 100644 --- a/src/Router/RouteCollection.php +++ b/src/Router/RouteCollection.php @@ -13,6 +13,7 @@ /** * Class RouteCollection * @internal Internal collection of Route descriptors. + * @package Quantum\Router */ final class RouteCollection { diff --git a/src/Router/RouteDispatcher.php b/src/Router/RouteDispatcher.php index 0e12c890..7b3e3cb7 100644 --- a/src/Router/RouteDispatcher.php +++ b/src/Router/RouteDispatcher.php @@ -22,6 +22,7 @@ /** * Class RouteDispatcher + * @package Quantum\Router */ final class RouteDispatcher { diff --git a/src/Router/RouteFinder.php b/src/Router/RouteFinder.php index 90341305..f9b1fad3 100644 --- a/src/Router/RouteFinder.php +++ b/src/Router/RouteFinder.php @@ -15,6 +15,7 @@ /** * Class RouteFinder * @internal Resolves an incoming request to a matched route. + * @package Quantum\Router */ final class RouteFinder { diff --git a/src/Service/Exceptions/ServiceException.php b/src/Service/Exceptions/ServiceException.php index e9b193ff..2ff7b795 100644 --- a/src/Service/Exceptions/ServiceException.php +++ b/src/Service/Exceptions/ServiceException.php @@ -14,6 +14,7 @@ /** * Class ServiceException + * @package Quantum\Service * @codeCoverageIgnore */ class ServiceException extends BaseException diff --git a/src/Service/Factories/ServiceFactory.php b/src/Service/Factories/ServiceFactory.php index a9b3ad3b..bde03d47 100644 --- a/src/Service/Factories/ServiceFactory.php +++ b/src/Service/Factories/ServiceFactory.php @@ -19,6 +19,7 @@ /** * Class ServiceFactory + * @package Quantum\Service */ class ServiceFactory { diff --git a/src/Service/Service.php b/src/Service/Service.php index 076d9f89..d5281d26 100644 --- a/src/Service/Service.php +++ b/src/Service/Service.php @@ -15,6 +15,7 @@ /** * Class Service + * @package Quantum\Service */ abstract class Service { diff --git a/src/Session/Adapters/Database/DatabaseHandler.php b/src/Session/Adapters/Database/DatabaseHandler.php index f1e5b776..32549aaf 100644 --- a/src/Session/Adapters/Database/DatabaseHandler.php +++ b/src/Session/Adapters/Database/DatabaseHandler.php @@ -15,6 +15,7 @@ /** * Class DatabaseHandler + * @package Quantum\Session */ class DatabaseHandler implements SessionHandlerInterface { diff --git a/src/Session/Adapters/Database/DatabaseSessionAdapter.php b/src/Session/Adapters/Database/DatabaseSessionAdapter.php index 598cbd13..7d479c04 100644 --- a/src/Session/Adapters/Database/DatabaseSessionAdapter.php +++ b/src/Session/Adapters/Database/DatabaseSessionAdapter.php @@ -21,6 +21,7 @@ /** * Class Session + * @package Quantum\Session */ class DatabaseSessionAdapter implements SessionStorageInterface { diff --git a/src/Session/Adapters/Native/NativeSessionAdapter.php b/src/Session/Adapters/Native/NativeSessionAdapter.php index f151cdc2..963f9def 100644 --- a/src/Session/Adapters/Native/NativeSessionAdapter.php +++ b/src/Session/Adapters/Native/NativeSessionAdapter.php @@ -16,6 +16,7 @@ /** * Class Session + * @package Quantum\Session */ class NativeSessionAdapter implements SessionStorageInterface { diff --git a/src/Session/Contracts/SessionStorageInterface.php b/src/Session/Contracts/SessionStorageInterface.php index 452573cc..e3de2734 100644 --- a/src/Session/Contracts/SessionStorageInterface.php +++ b/src/Session/Contracts/SessionStorageInterface.php @@ -12,6 +12,7 @@ /** * Interface SessionStorageInterface + * @package Quantum\Session */ interface SessionStorageInterface { diff --git a/src/Session/Enums/ExceptionMessages.php b/src/Session/Enums/ExceptionMessages.php index fcbd62ed..ac1e4530 100644 --- a/src/Session/Enums/ExceptionMessages.php +++ b/src/Session/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Session */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Session/Enums/SessionType.php b/src/Session/Enums/SessionType.php index 4bc58d2c..fc4b5ede 100644 --- a/src/Session/Enums/SessionType.php +++ b/src/Session/Enums/SessionType.php @@ -12,6 +12,7 @@ /** * Class SessionType + * @package Quantum\Session * @codeCoverageIgnore */ final class SessionType diff --git a/src/Session/Exceptions/SessionException.php b/src/Session/Exceptions/SessionException.php index ceb346c6..0cb86469 100644 --- a/src/Session/Exceptions/SessionException.php +++ b/src/Session/Exceptions/SessionException.php @@ -15,6 +15,7 @@ /** * Class SessionException + * @package Quantum\Session */ class SessionException extends BaseException { diff --git a/src/Session/Factories/SessionFactory.php b/src/Session/Factories/SessionFactory.php index 010fac09..4bbcb8b4 100644 --- a/src/Session/Factories/SessionFactory.php +++ b/src/Session/Factories/SessionFactory.php @@ -25,6 +25,7 @@ /** * Class SessionFactory + * @package Quantum\Session */ class SessionFactory { diff --git a/src/Session/Session.php b/src/Session/Session.php index 526da03d..7ef55f45 100644 --- a/src/Session/Session.php +++ b/src/Session/Session.php @@ -16,6 +16,7 @@ /** * Class Session + * @package Quantum\Session * @method array all() * @method bool has(string $key) * @method mixed|null get(string $key) diff --git a/src/Session/Traits/SessionTrait.php b/src/Session/Traits/SessionTrait.php index 30d509e9..31f58429 100644 --- a/src/Session/Traits/SessionTrait.php +++ b/src/Session/Traits/SessionTrait.php @@ -18,6 +18,7 @@ /** * Traits SessionTrait + * @package Quantum\Session */ trait SessionTrait { diff --git a/src/Storage/Adapters/Dropbox/DropboxApp.php b/src/Storage/Adapters/Dropbox/DropboxApp.php index e50c59e7..771a2f56 100644 --- a/src/Storage/Adapters/Dropbox/DropboxApp.php +++ b/src/Storage/Adapters/Dropbox/DropboxApp.php @@ -23,6 +23,7 @@ /** * Class DropboxApp + * @package Quantum\Storage */ class DropboxApp implements CloudAppInterface { diff --git a/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php b/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php index e2816d96..a6827bdf 100644 --- a/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php +++ b/src/Storage/Adapters/Dropbox/DropboxFileSystemAdapter.php @@ -15,6 +15,7 @@ /** * Class DropboxFileSystemAdapter + * @package Quantum\Storage */ class DropboxFileSystemAdapter implements FilesystemAdapterInterface { diff --git a/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php b/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php index b6427cc0..20a27455 100644 --- a/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php +++ b/src/Storage/Adapters/GoogleDrive/GoogleDriveApp.php @@ -21,6 +21,7 @@ /** * Class GoogleDriveApp + * @package Quantum\Storage */ class GoogleDriveApp implements CloudAppInterface { diff --git a/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php b/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php index ed7807fa..a9f6f97e 100644 --- a/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php +++ b/src/Storage/Adapters/GoogleDrive/GoogleDriveFileSystemAdapter.php @@ -15,6 +15,7 @@ /** * Class GoogleDriveFileSystemAdapter + * @package Quantum\Storage */ class GoogleDriveFileSystemAdapter implements FilesystemAdapterInterface { diff --git a/src/Storage/Adapters/Local/LocalFileSystemAdapter.php b/src/Storage/Adapters/Local/LocalFileSystemAdapter.php index 3e3921e6..bea98c9d 100644 --- a/src/Storage/Adapters/Local/LocalFileSystemAdapter.php +++ b/src/Storage/Adapters/Local/LocalFileSystemAdapter.php @@ -15,6 +15,7 @@ /** * Class LocalFileSystemAdapter + * @package Quantum\Storage */ class LocalFileSystemAdapter implements LocalFilesystemAdapterInterface { diff --git a/src/Storage/Contracts/CloudAppInterface.php b/src/Storage/Contracts/CloudAppInterface.php index fde71b08..ca624a9d 100644 --- a/src/Storage/Contracts/CloudAppInterface.php +++ b/src/Storage/Contracts/CloudAppInterface.php @@ -14,6 +14,7 @@ /** * Interface CloudAppInterface + * @package Quantum\Storage */ interface CloudAppInterface { diff --git a/src/Storage/Contracts/FilesystemAdapterInterface.php b/src/Storage/Contracts/FilesystemAdapterInterface.php index 01a2cd25..8c50ac86 100644 --- a/src/Storage/Contracts/FilesystemAdapterInterface.php +++ b/src/Storage/Contracts/FilesystemAdapterInterface.php @@ -12,6 +12,7 @@ /** * Interface FilesystemAdapterInterface + * @package Quantum\Storage */ interface FilesystemAdapterInterface { diff --git a/src/Storage/Contracts/LocalFilesystemAdapterInterface.php b/src/Storage/Contracts/LocalFilesystemAdapterInterface.php index 3430ce8a..901bf026 100644 --- a/src/Storage/Contracts/LocalFilesystemAdapterInterface.php +++ b/src/Storage/Contracts/LocalFilesystemAdapterInterface.php @@ -12,6 +12,7 @@ /** * Interface LocalFilesystemAdapterInterface + * @package Quantum\Storage */ interface LocalFilesystemAdapterInterface extends FilesystemAdapterInterface { diff --git a/src/Storage/Contracts/TokenServiceInterface.php b/src/Storage/Contracts/TokenServiceInterface.php index 9dbd3837..0c95a9d2 100644 --- a/src/Storage/Contracts/TokenServiceInterface.php +++ b/src/Storage/Contracts/TokenServiceInterface.php @@ -12,6 +12,7 @@ /** * Interface TokenServiceInterface + * @package Quantum\Storage */ interface TokenServiceInterface { diff --git a/src/Storage/Enums/ExceptionMessages.php b/src/Storage/Enums/ExceptionMessages.php index 0a5a6ddb..96c2a0d8 100644 --- a/src/Storage/Enums/ExceptionMessages.php +++ b/src/Storage/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\Session */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Storage/Enums/FileSystemType.php b/src/Storage/Enums/FileSystemType.php index 7ded5f64..9c1fabfa 100644 --- a/src/Storage/Enums/FileSystemType.php +++ b/src/Storage/Enums/FileSystemType.php @@ -12,6 +12,7 @@ /** * Class FileSystemType + * @package Quantum\Storage * @codeCoverageIgnore */ final class FileSystemType diff --git a/src/Storage/Exceptions/FileSystemException.php b/src/Storage/Exceptions/FileSystemException.php index dd524b8e..9573dbe6 100644 --- a/src/Storage/Exceptions/FileSystemException.php +++ b/src/Storage/Exceptions/FileSystemException.php @@ -15,6 +15,7 @@ /** * Class FileSystemException + * @package Quantum\Storage */ class FileSystemException extends BaseException { diff --git a/src/Storage/Exceptions/FileUploadException.php b/src/Storage/Exceptions/FileUploadException.php index a27c48de..bdc3975d 100644 --- a/src/Storage/Exceptions/FileUploadException.php +++ b/src/Storage/Exceptions/FileUploadException.php @@ -16,6 +16,7 @@ /** * Class FileUploadException + * @package Quantum\Storage */ class FileUploadException extends BaseException { diff --git a/src/Storage/Factories/FileSystemFactory.php b/src/Storage/Factories/FileSystemFactory.php index 0823392a..f6652871 100644 --- a/src/Storage/Factories/FileSystemFactory.php +++ b/src/Storage/Factories/FileSystemFactory.php @@ -33,6 +33,7 @@ /** * Class FileSystemFactory + * @package Quantum\Storage */ class FileSystemFactory { diff --git a/src/Storage/FileSystem.php b/src/Storage/FileSystem.php index a482c73d..b177b83d 100644 --- a/src/Storage/FileSystem.php +++ b/src/Storage/FileSystem.php @@ -16,6 +16,7 @@ /** * Class FileSystem + * @package Quantum\Storage * @method bool makeDirectory(string $dirname, ?string $parentId = null) * @method bool removeDirectory(string $dirname) * @method string|false get(string $filename) diff --git a/src/Storage/Traits/CloudAppTrait.php b/src/Storage/Traits/CloudAppTrait.php index b6fed4e9..e270938f 100644 --- a/src/Storage/Traits/CloudAppTrait.php +++ b/src/Storage/Traits/CloudAppTrait.php @@ -16,6 +16,7 @@ /** * Trait CloudAppTrait + * @package Quantum\Storage */ trait CloudAppTrait { diff --git a/src/Storage/UploadedFile.php b/src/Storage/UploadedFile.php index 0b5ae01b..ac42d606 100644 --- a/src/Storage/UploadedFile.php +++ b/src/Storage/UploadedFile.php @@ -31,6 +31,7 @@ /** * Class File + * @package Quantum\Storage */ class UploadedFile extends SplFileInfo { diff --git a/src/Tracer/ErrorHandler.php b/src/Tracer/ErrorHandler.php index 8151503a..b1b39263 100644 --- a/src/Tracer/ErrorHandler.php +++ b/src/Tracer/ErrorHandler.php @@ -25,6 +25,7 @@ /** * Class ErrorHandler + * @package Quantum\Tracer */ class ErrorHandler { diff --git a/src/Transformer/Contracts/TransformerInterface.php b/src/Transformer/Contracts/TransformerInterface.php index 08952415..38a066be 100644 --- a/src/Transformer/Contracts/TransformerInterface.php +++ b/src/Transformer/Contracts/TransformerInterface.php @@ -12,6 +12,7 @@ /** * Interface TransformerInterface + * @package Quantum\Transformer */ interface TransformerInterface { diff --git a/src/Transformer/Transformer.php b/src/Transformer/Transformer.php index 5aa1f211..3f6ade08 100644 --- a/src/Transformer/Transformer.php +++ b/src/Transformer/Transformer.php @@ -14,6 +14,7 @@ /** * Class TransformerManager + * @package Quantum\Transformer */ class Transformer { diff --git a/src/Validation/Rule.php b/src/Validation/Rule.php index 656d1ad3..b2a2832d 100644 --- a/src/Validation/Rule.php +++ b/src/Validation/Rule.php @@ -12,6 +12,7 @@ /** * Rule class + * @package Quantum * @category Libraries * @method static bool required() * @method static bool email() diff --git a/src/Validation/Traits/File.php b/src/Validation/Traits/File.php index 8078c57c..870e01d5 100644 --- a/src/Validation/Traits/File.php +++ b/src/Validation/Traits/File.php @@ -15,6 +15,7 @@ /** * Trait File + * @package Quantum\Validation\Rules */ trait File { diff --git a/src/Validation/Traits/General.php b/src/Validation/Traits/General.php index 8093fcff..5bb885bc 100644 --- a/src/Validation/Traits/General.php +++ b/src/Validation/Traits/General.php @@ -22,6 +22,7 @@ /** * Trait General + * @package Quantum\Validation */ trait General { diff --git a/src/Validation/Traits/Length.php b/src/Validation/Traits/Length.php index b080e3ea..0c1a070c 100644 --- a/src/Validation/Traits/Length.php +++ b/src/Validation/Traits/Length.php @@ -12,6 +12,7 @@ /** * Trait Length + * @package Quantum\Validation\Rules */ trait Length { diff --git a/src/Validation/Traits/Lists.php b/src/Validation/Traits/Lists.php index e4ab670f..31fb8863 100644 --- a/src/Validation/Traits/Lists.php +++ b/src/Validation/Traits/Lists.php @@ -12,6 +12,7 @@ /** * Trait Lists + * @package Quantum\Validation\Rules */ trait Lists { diff --git a/src/Validation/Traits/Resource.php b/src/Validation/Traits/Resource.php index 7bbf7b40..d3cc8679 100644 --- a/src/Validation/Traits/Resource.php +++ b/src/Validation/Traits/Resource.php @@ -12,6 +12,7 @@ /** * Trait Resource + * @package Quantum\Validation\Rules */ trait Resource { diff --git a/src/Validation/Traits/Type.php b/src/Validation/Traits/Type.php index 15dbf7a2..bcf96215 100644 --- a/src/Validation/Traits/Type.php +++ b/src/Validation/Traits/Type.php @@ -12,6 +12,7 @@ /** * Trait Type + * @package Quantum\Validation\Rules */ trait Type { diff --git a/src/Validation/Validator.php b/src/Validation/Validator.php index e081ed1f..eb0269ce 100644 --- a/src/Validation/Validator.php +++ b/src/Validation/Validator.php @@ -27,6 +27,7 @@ /** * Class Validator + * @package Quantum\Validation */ class Validator { diff --git a/src/View/Enums/ExceptionMessages.php b/src/View/Enums/ExceptionMessages.php index 70e6bc35..88e5548b 100644 --- a/src/View/Enums/ExceptionMessages.php +++ b/src/View/Enums/ExceptionMessages.php @@ -14,6 +14,7 @@ /** * Class ExceptionMessages + * @package Quantum\View */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/View/Exceptions/ViewException.php b/src/View/Exceptions/ViewException.php index 7e3c25ca..e796b61e 100644 --- a/src/View/Exceptions/ViewException.php +++ b/src/View/Exceptions/ViewException.php @@ -15,6 +15,7 @@ /** * Class ViewException + * @package Quantum\View */ class ViewException extends BaseException { diff --git a/src/View/Factories/ViewFactory.php b/src/View/Factories/ViewFactory.php index 3f7cb9dc..b154a7c4 100644 --- a/src/View/Factories/ViewFactory.php +++ b/src/View/Factories/ViewFactory.php @@ -21,6 +21,7 @@ /** * Class ViewFactory + * @package Quantum\View * @mixin View */ class ViewFactory diff --git a/src/View/RawParam.php b/src/View/RawParam.php index 9186e020..9335acc4 100644 --- a/src/View/RawParam.php +++ b/src/View/RawParam.php @@ -12,6 +12,7 @@ /** * Class RawParam + * @package Quantum\View */ class RawParam { diff --git a/src/View/View.php b/src/View/View.php index 553a0e20..bf160dd2 100644 --- a/src/View/View.php +++ b/src/View/View.php @@ -26,6 +26,7 @@ /** * Class View + * @package Quantum\View */ class View { diff --git a/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.lock b/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.lock deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate b/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate deleted file mode 100644 index ec8a4406..00000000 --- a/tests/_root/cache/data/1cf9f20a82972297da8170028eaf98b1.rate +++ /dev/null @@ -1 +0,0 @@ -{"count":1,"reset_at":1782372991} \ No newline at end of file From 2bf9fcb7745d419a3bd35b2fa4195cf37d545a1b Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Sun, 28 Jun 2026 22:18:36 +0400 Subject: [PATCH 8/9] [#532] Normalize package annotations by component --- src/Archive/Adapters/ZipAdapter.php | 2 +- src/Auth/Exceptions/AuthException.php | 2 +- src/Cache/Traits/CacheTrait.php | 2 +- src/Console/Commands/ModuleGenerateCommand.php | 2 +- src/Database/Factories/TableFactory.php | 2 +- src/Di/Di.php | 2 +- src/Di/DiContainer.php | 2 +- src/Di/DiRegistry.php | 2 +- src/Environment/Exceptions/EnvException.php | 2 +- src/Hook/Exceptions/HookException.php | 2 +- src/Hook/HookManager.php | 2 +- src/Http/Traits/Request/Body.php | 2 +- src/Http/Traits/Request/File.php | 2 +- src/Http/Traits/Request/Header.php | 2 +- src/Http/Traits/Request/Internal.php | 2 +- src/Http/Traits/Request/Params.php | 2 +- src/Http/Traits/Request/Query.php | 2 +- src/Http/Traits/Request/Route.php | 2 +- src/Http/Traits/Request/Url.php | 2 +- src/Http/Traits/Response/Body.php | 2 +- src/Http/Traits/Response/Header.php | 2 +- src/Http/Traits/Response/Status.php | 2 +- src/HttpClient/Exceptions/HttpClientException.php | 2 +- src/Jwt/Exceptions/JwtException.php | 2 +- src/Jwt/JwtToken.php | 2 +- src/Loader/Exceptions/LoaderException.php | 2 +- src/Middleware/Exceptions/MiddlewareException.php | 2 +- src/Migration/Exceptions/MigrationException.php | 2 +- src/Router/Exceptions/RouteException.php | 2 +- src/Storage/Enums/ExceptionMessages.php | 2 +- src/Validation/Rule.php | 2 +- src/Validation/Traits/File.php | 2 +- src/Validation/Traits/Length.php | 2 +- src/Validation/Traits/Lists.php | 2 +- src/Validation/Traits/Resource.php | 2 +- src/Validation/Traits/Type.php | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/src/Archive/Adapters/ZipAdapter.php b/src/Archive/Adapters/ZipAdapter.php index ad9e41e7..284a7cf1 100644 --- a/src/Archive/Adapters/ZipAdapter.php +++ b/src/Archive/Adapters/ZipAdapter.php @@ -21,7 +21,7 @@ /** * Class ZipAdapter - * @package Quantum\Archive\Adapters + * @package Quantum\Archive */ class ZipAdapter implements ArchiveInterface { diff --git a/src/Auth/Exceptions/AuthException.php b/src/Auth/Exceptions/AuthException.php index 9f71598b..4e47405c 100644 --- a/src/Auth/Exceptions/AuthException.php +++ b/src/Auth/Exceptions/AuthException.php @@ -15,7 +15,7 @@ /** * Class AuthException - * @package Quantum\Exceptions + * @package Quantum\Auth */ class AuthException extends BaseException { diff --git a/src/Cache/Traits/CacheTrait.php b/src/Cache/Traits/CacheTrait.php index 5b59eb36..9ed87706 100644 --- a/src/Cache/Traits/CacheTrait.php +++ b/src/Cache/Traits/CacheTrait.php @@ -15,7 +15,7 @@ /** * Trait CacheTrait - * @package Quantum\Cache\Traits + * @package Quantum\Cache */ trait CacheTrait { diff --git a/src/Console/Commands/ModuleGenerateCommand.php b/src/Console/Commands/ModuleGenerateCommand.php index 36c452ad..3545548f 100644 --- a/src/Console/Commands/ModuleGenerateCommand.php +++ b/src/Console/Commands/ModuleGenerateCommand.php @@ -17,7 +17,7 @@ /** * Class ModuleGenerateCommand - * @package Quantum\Console\Commands + * @package Quantum\Console */ class ModuleGenerateCommand extends CliCommand { diff --git a/src/Database/Factories/TableFactory.php b/src/Database/Factories/TableFactory.php index afcbb5b5..d30290f0 100644 --- a/src/Database/Factories/TableFactory.php +++ b/src/Database/Factories/TableFactory.php @@ -17,7 +17,7 @@ /** * Class TableFactory - * @package Quantum\Factory + * @package Quantum\Database */ class TableFactory { diff --git a/src/Di/Di.php b/src/Di/Di.php index ccf56013..e5659829 100644 --- a/src/Di/Di.php +++ b/src/Di/Di.php @@ -21,7 +21,7 @@ * owned by AppContext. Preserves the existing static API * for full backward compatibility. * - * @package Quantum/Di + * @package Quantum\Di * @method static void registerDependencies(array $dependencies) * @method static void register(string $concrete, ?string $abstract = null) * @method static bool isRegistered(string $abstract) diff --git a/src/Di/DiContainer.php b/src/Di/DiContainer.php index e61f08b7..3b9324dc 100644 --- a/src/Di/DiContainer.php +++ b/src/Di/DiContainer.php @@ -24,7 +24,7 @@ * Instance-based dependency injection container. * Holds all dependency registrations and resolved instances for a single application execution. * - * @package Quantum/Di + * @package Quantum\Di */ class DiContainer { diff --git a/src/Di/DiRegistry.php b/src/Di/DiRegistry.php index 68489ed2..757bc26c 100644 --- a/src/Di/DiRegistry.php +++ b/src/Di/DiRegistry.php @@ -18,7 +18,7 @@ * * Stores dependency bindings for the container. * - * @package Quantum/Di + * @package Quantum\Di */ class DiRegistry { diff --git a/src/Environment/Exceptions/EnvException.php b/src/Environment/Exceptions/EnvException.php index 6fbc1187..ae3e7089 100644 --- a/src/Environment/Exceptions/EnvException.php +++ b/src/Environment/Exceptions/EnvException.php @@ -15,7 +15,7 @@ /** * Class EnvException - * @package Quantum\Exceptions + * @package Quantum\Environment */ class EnvException extends BaseException { diff --git a/src/Hook/Exceptions/HookException.php b/src/Hook/Exceptions/HookException.php index 9fa9b81b..b1d2dc69 100644 --- a/src/Hook/Exceptions/HookException.php +++ b/src/Hook/Exceptions/HookException.php @@ -15,7 +15,7 @@ /** * Class HookException - * @package Quantum\Exceptions + * @package Quantum\Hook */ class HookException extends BaseException { diff --git a/src/Hook/HookManager.php b/src/Hook/HookManager.php index 46e8cb42..b1d5c046 100644 --- a/src/Hook/HookManager.php +++ b/src/Hook/HookManager.php @@ -19,7 +19,7 @@ /** * Class HookManager - * @package Quantum\Hooks + * @package Quantum\Hook */ class HookManager { diff --git a/src/Http/Traits/Request/Body.php b/src/Http/Traits/Request/Body.php index e4ea4cc3..01fef752 100644 --- a/src/Http/Traits/Request/Body.php +++ b/src/Http/Traits/Request/Body.php @@ -15,7 +15,7 @@ /** * Trait Body - * @package Quantum\Http\Request + * @package Quantum\Http */ trait Body { diff --git a/src/Http/Traits/Request/File.php b/src/Http/Traits/Request/File.php index 585f2ac4..79e2ca9a 100644 --- a/src/Http/Traits/Request/File.php +++ b/src/Http/Traits/Request/File.php @@ -16,7 +16,7 @@ /** * Trait File - * @package Quantum\Http\Request + * @package Quantum\Http */ trait File { diff --git a/src/Http/Traits/Request/Header.php b/src/Http/Traits/Request/Header.php index 34c968a8..b6c4c0c9 100644 --- a/src/Http/Traits/Request/Header.php +++ b/src/Http/Traits/Request/Header.php @@ -12,7 +12,7 @@ /** * Trait Header - * @package Quantum\Http\Request + * @package Quantum\Http */ trait Header { diff --git a/src/Http/Traits/Request/Internal.php b/src/Http/Traits/Request/Internal.php index 99bb6193..502ab59d 100644 --- a/src/Http/Traits/Request/Internal.php +++ b/src/Http/Traits/Request/Internal.php @@ -19,7 +19,7 @@ /** * Trait Internal - * @package Quantum\Http\Request + * @package Quantum\Http */ trait Internal { diff --git a/src/Http/Traits/Request/Params.php b/src/Http/Traits/Request/Params.php index 68432b6c..3318df17 100644 --- a/src/Http/Traits/Request/Params.php +++ b/src/Http/Traits/Request/Params.php @@ -18,7 +18,7 @@ /** * Trait Params - * @package Quantum\Http\Request + * @package Quantum\Http */ trait Params { diff --git a/src/Http/Traits/Request/Query.php b/src/Http/Traits/Request/Query.php index 48275ebe..d1b163ea 100644 --- a/src/Http/Traits/Request/Query.php +++ b/src/Http/Traits/Request/Query.php @@ -12,7 +12,7 @@ /** * Trait Query - * @package Quantum\Http\Request + * @package Quantum\Http */ trait Query { diff --git a/src/Http/Traits/Request/Route.php b/src/Http/Traits/Request/Route.php index ed7a70c7..1767ea1d 100644 --- a/src/Http/Traits/Request/Route.php +++ b/src/Http/Traits/Request/Route.php @@ -18,7 +18,7 @@ /** * Trait Route - * @package Quantum\Http\Request + * @package Quantum\Http */ trait Route { diff --git a/src/Http/Traits/Request/Url.php b/src/Http/Traits/Request/Url.php index 0ce3d833..8ca9490c 100644 --- a/src/Http/Traits/Request/Url.php +++ b/src/Http/Traits/Request/Url.php @@ -12,7 +12,7 @@ /** * Trait Url - * @package Quantum\Http\Request + * @package Quantum\Http */ trait Url { diff --git a/src/Http/Traits/Response/Body.php b/src/Http/Traits/Response/Body.php index e5180cd6..c2294c46 100644 --- a/src/Http/Traits/Response/Body.php +++ b/src/Http/Traits/Response/Body.php @@ -19,7 +19,7 @@ /** * Trait Body - * @package Quantum\Http\Response + * @package Quantum\Http */ trait Body { diff --git a/src/Http/Traits/Response/Header.php b/src/Http/Traits/Response/Header.php index 94d4f7a8..e0ae3105 100644 --- a/src/Http/Traits/Response/Header.php +++ b/src/Http/Traits/Response/Header.php @@ -14,7 +14,7 @@ /** * Trait Header - * @package Quantum\Http\Response + * @package Quantum\Http */ trait Header { diff --git a/src/Http/Traits/Response/Status.php b/src/Http/Traits/Response/Status.php index ba7f6845..a1b42a45 100644 --- a/src/Http/Traits/Response/Status.php +++ b/src/Http/Traits/Response/Status.php @@ -15,7 +15,7 @@ /** * Trait Status - * @package Quantum\Http\Response + * @package Quantum\Http */ trait Status { diff --git a/src/HttpClient/Exceptions/HttpClientException.php b/src/HttpClient/Exceptions/HttpClientException.php index 205aac5b..bf27f49f 100644 --- a/src/HttpClient/Exceptions/HttpClientException.php +++ b/src/HttpClient/Exceptions/HttpClientException.php @@ -15,7 +15,7 @@ /** * Class HasherException - * @package Quantum\Hasher + * @package Quantum\HttpClient */ class HttpClientException extends BaseException { diff --git a/src/Jwt/Exceptions/JwtException.php b/src/Jwt/Exceptions/JwtException.php index 8eab1e06..4a40c1bb 100644 --- a/src/Jwt/Exceptions/JwtException.php +++ b/src/Jwt/Exceptions/JwtException.php @@ -15,7 +15,7 @@ /** * Class JwtException - * @package Quantum\JwtToken + * @package Quantum\Jwt */ class JwtException extends BaseException { diff --git a/src/Jwt/JwtToken.php b/src/Jwt/JwtToken.php index 62a4b50c..6bf8e2c1 100644 --- a/src/Jwt/JwtToken.php +++ b/src/Jwt/JwtToken.php @@ -17,7 +17,7 @@ /** * Class JwtToken - * @package Quantum\JwtToken + * @package Quantum\Jwt * @uses JWT */ class JwtToken extends JWT diff --git a/src/Loader/Exceptions/LoaderException.php b/src/Loader/Exceptions/LoaderException.php index 798ba36b..1e91016d 100644 --- a/src/Loader/Exceptions/LoaderException.php +++ b/src/Loader/Exceptions/LoaderException.php @@ -15,7 +15,7 @@ /** * DatabaseException class * - * @package Quantum + * @package Quantum\Loader * @category Exceptions * @codeCoverageIgnore */ diff --git a/src/Middleware/Exceptions/MiddlewareException.php b/src/Middleware/Exceptions/MiddlewareException.php index cae3305a..9367cd41 100644 --- a/src/Middleware/Exceptions/MiddlewareException.php +++ b/src/Middleware/Exceptions/MiddlewareException.php @@ -15,7 +15,7 @@ /** * Class MiddlewareException - * @package Quantum\Exceptions + * @package Quantum\Middleware */ class MiddlewareException extends BaseException { diff --git a/src/Migration/Exceptions/MigrationException.php b/src/Migration/Exceptions/MigrationException.php index d2192b87..3103beef 100644 --- a/src/Migration/Exceptions/MigrationException.php +++ b/src/Migration/Exceptions/MigrationException.php @@ -16,7 +16,7 @@ /** * MigrationException class * - * @package Quantum + * @package Quantum\Migration * @category Exceptions */ class MigrationException extends BaseException diff --git a/src/Router/Exceptions/RouteException.php b/src/Router/Exceptions/RouteException.php index afd82ebf..f366b137 100644 --- a/src/Router/Exceptions/RouteException.php +++ b/src/Router/Exceptions/RouteException.php @@ -15,7 +15,7 @@ /** * Class RouteException - * @package Quantum\Exceptions + * @package Quantum\Router */ class RouteException extends BaseException { diff --git a/src/Storage/Enums/ExceptionMessages.php b/src/Storage/Enums/ExceptionMessages.php index 96c2a0d8..086efbc6 100644 --- a/src/Storage/Enums/ExceptionMessages.php +++ b/src/Storage/Enums/ExceptionMessages.php @@ -14,7 +14,7 @@ /** * Class ExceptionMessages - * @package Quantum\Session + * @package Quantum\Storage */ final class ExceptionMessages extends BaseExceptionMessages { diff --git a/src/Validation/Rule.php b/src/Validation/Rule.php index b2a2832d..263815d9 100644 --- a/src/Validation/Rule.php +++ b/src/Validation/Rule.php @@ -12,7 +12,7 @@ /** * Rule class - * @package Quantum + * @package Quantum\Validation * @category Libraries * @method static bool required() * @method static bool email() diff --git a/src/Validation/Traits/File.php b/src/Validation/Traits/File.php index 870e01d5..2a56954a 100644 --- a/src/Validation/Traits/File.php +++ b/src/Validation/Traits/File.php @@ -15,7 +15,7 @@ /** * Trait File - * @package Quantum\Validation\Rules + * @package Quantum\Validation */ trait File { diff --git a/src/Validation/Traits/Length.php b/src/Validation/Traits/Length.php index 0c1a070c..a1297146 100644 --- a/src/Validation/Traits/Length.php +++ b/src/Validation/Traits/Length.php @@ -12,7 +12,7 @@ /** * Trait Length - * @package Quantum\Validation\Rules + * @package Quantum\Validation */ trait Length { diff --git a/src/Validation/Traits/Lists.php b/src/Validation/Traits/Lists.php index 31fb8863..495165e9 100644 --- a/src/Validation/Traits/Lists.php +++ b/src/Validation/Traits/Lists.php @@ -12,7 +12,7 @@ /** * Trait Lists - * @package Quantum\Validation\Rules + * @package Quantum\Validation */ trait Lists { diff --git a/src/Validation/Traits/Resource.php b/src/Validation/Traits/Resource.php index d3cc8679..e3243bc5 100644 --- a/src/Validation/Traits/Resource.php +++ b/src/Validation/Traits/Resource.php @@ -12,7 +12,7 @@ /** * Trait Resource - * @package Quantum\Validation\Rules + * @package Quantum\Validation */ trait Resource { diff --git a/src/Validation/Traits/Type.php b/src/Validation/Traits/Type.php index bcf96215..42de1ca8 100644 --- a/src/Validation/Traits/Type.php +++ b/src/Validation/Traits/Type.php @@ -12,7 +12,7 @@ /** * Trait Type - * @package Quantum\Validation\Rules + * @package Quantum\Validation */ trait Type { From 4cc45d69f0eb09c4c6526e5dcf0d9b3a8408f01b Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Sun, 28 Jun 2026 22:29:47 +0400 Subject: [PATCH 9/9] [#532] Prepare 3.0.3 changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eddcf154..9d3fb019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## [Unreleased] +## [3.0.3] - 2026-06-28 ### Changed - **BREAKING:** Raised the minimum supported PHP version from `7.4` to `8.0` (#532)