Skip to content

Commit

Permalink
Fix missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xepozz committed Jun 9, 2024
1 parent bc3f4e7 commit ee1ba03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,14 @@
"php": "^8.1",
"httpsoft/http-basis": "^1.1",
"phpspec/php-diff": "^1.1.3",
"psr/http-message": "^2.0",
"symfony/console": "^7.1",
"yiisoft/active-record": "dev-master",
"yiisoft/aliases": "^3.0",
"yiisoft/arrays": "^2.1|^3.0",
"yiisoft/data-response": "^2.0",
"yiisoft/db": "1.2 as dev-master",
"yiisoft/friendly-exception": "^1.1",
"yiisoft/http": "^1.2",
"yiisoft/hydrator": "^1.0",
"yiisoft/injector": "^1.1",
Expand All @@ -56,9 +61,7 @@
"roave/infection-static-analysis-plugin": "^1.23",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^5.13",
"yiisoft/active-record": "dev-master",
"yiisoft/cache": "^3.0",
"yiisoft/db": "1.2 as dev-master",
"yiisoft/db-sqlite": "^1.0",
"yiisoft/di": "^1.1",
"yiisoft/dummy-provider": "^1.0",
Expand Down
7 changes: 0 additions & 7 deletions src/Component/CodeFile/CodeFileWriteResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

namespace Yiisoft\Yii\Gii\Component\CodeFile;

use JetBrains\PhpStorm\ArrayShape;

class CodeFileWriteResult
{
private array $results = [];
Expand All @@ -28,11 +26,6 @@ public function addError(CodeFile $file, string $error): void
];
}

#[ArrayShape([
'id' => 'string',
'status' => 'string',
'error' => 'null|string',
])]
public function getResults(): array
{
return $this->results;
Expand Down

0 comments on commit ee1ba03

Please sign in to comment.