-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
219 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
parameters: | ||
checkMissingIterableValueType: false | ||
reportUnmatchedIgnoredErrors: true | ||
level: max | ||
reportUnmatchedIgnoredErrors: false | ||
ignoreErrors: | ||
- | ||
identifier: missingType.iterableValue | ||
- '#Parameter \#2 \$cacheStorage of class Nette\\Database\\Structure constructor expects Nette\\Caching\\IStorage, Nette\\Caching\\Storages\\MemoryStorage given\.#' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Symfony\Component\Console\Input\InputDefinition; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
|
||
return new class implements InputInterface { | ||
public function bind(InputDefinition $definition) | ||
{ | ||
|
||
} | ||
|
||
public function getArgument($name) | ||
{ | ||
|
||
} | ||
|
||
public function getArguments(): array | ||
{ | ||
|
||
} | ||
|
||
public function getFirstArgument(): string | ||
{ | ||
|
||
} | ||
|
||
public function getOption($name) | ||
{ | ||
|
||
} | ||
|
||
public function getOptions(): array | ||
{ | ||
|
||
} | ||
|
||
public function getParameterOption($values, $default = false, $onlyParams = false) | ||
{ | ||
|
||
} | ||
|
||
public function hasArgument($name): bool | ||
{ | ||
|
||
} | ||
|
||
public function hasOption($name): bool | ||
{ | ||
|
||
} | ||
|
||
public function hasParameterOption($values, $onlyParams = false): bool | ||
{ | ||
|
||
} | ||
|
||
public function isInteractive(): bool | ||
{ | ||
|
||
} | ||
|
||
public function setArgument($name, $value) | ||
{ | ||
|
||
} | ||
|
||
public function setInteractive($interactive) | ||
{ | ||
|
||
} | ||
|
||
public function setOption($name, $value) | ||
{ | ||
|
||
} | ||
|
||
public function validate() | ||
{ | ||
|
||
} | ||
}; |
Oops, something went wrong.