Skip to content

Commit

Permalink
Aligned dev dependencies (rector and php-cs-fixer)
Browse files Browse the repository at this point in the history
  • Loading branch information
gplanchat committed Nov 16, 2023
1 parent 29aac4a commit 3bc1480
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.0",
"friendsofphp/php-cs-fixer": "^3.38",
"rector/rector": "^0.15"
},
"autoload": {
Expand Down
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/SchedulingInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@

namespace Kiboko\Contract\Pipeline;

use Kiboko\Contract\Satellite\CodeInterface;
use Kiboko\Contract\Satellite\RunnableInterface;

interface SchedulingInterface
{
public function job(JobCodeInterface $job, RunnableInterface $runnable): self;
public function job(CodeInterface $job, RunnableInterface $runnable): self;

Check failure on line 12 in src/SchedulingInterface.php

View workflow job for this annotation

GitHub Actions / phpstan

Parameter $job of method Kiboko\Contract\Pipeline\SchedulingInterface::job() has invalid type Kiboko\Contract\Satellite\CodeInterface.
}

0 comments on commit 3bc1480

Please sign in to comment.