Merge pull request #1135 from phil-davis/fix-comment-typo
Fix typo in comment and phpstan
This commit is contained in:
commit
9f85520858
7 changed files with 9 additions and 6 deletions
|
@ -45,7 +45,7 @@ if (!file_exists(PROJECT_PATH_ROOT . 'vendor/')) {
|
|||
|
||||
require PROJECT_PATH_ROOT . 'vendor/autoload.php';
|
||||
|
||||
# Bootstraping Flake
|
||||
# Bootstrapping Flake
|
||||
\Flake\Framework::bootstrap();
|
||||
|
||||
# Bootstrapping Baïkal
|
||||
|
|
|
@ -46,7 +46,7 @@ if (!file_exists(PROJECT_PATH_ROOT . 'vendor/')) {
|
|||
|
||||
require PROJECT_PATH_ROOT . 'vendor/autoload.php';
|
||||
|
||||
# Bootstraping Flake
|
||||
# Bootstrapping Flake
|
||||
\Flake\Framework::bootstrap();
|
||||
|
||||
# Bootstrap BaikalAdmin
|
||||
|
|
|
@ -53,7 +53,7 @@ if (!file_exists(PROJECT_PATH_ROOT . 'vendor/')) {
|
|||
|
||||
require PROJECT_PATH_ROOT . "vendor/autoload.php";
|
||||
|
||||
# Bootstraping Flake
|
||||
# Bootstrapping Flake
|
||||
\Flake\Framework::bootstrap();
|
||||
|
||||
# Bootstrap BaikalAdmin
|
||||
|
|
|
@ -60,6 +60,7 @@ abstract class ChainLink implements \Flake\Core\Datastructure\Chainable {
|
|||
$this->__container->offsetUnset($offset);
|
||||
}
|
||||
|
||||
#[\ReturnTypeWillChange]
|
||||
function &offsetGet($offset) {
|
||||
if (is_null($this->__container)) {
|
||||
return null;
|
||||
|
@ -74,10 +75,12 @@ abstract class ChainLink implements \Flake\Core\Datastructure\Chainable {
|
|||
$this->__container->rewind();
|
||||
}
|
||||
|
||||
#[\ReturnTypeWillChange]
|
||||
function current() {
|
||||
return $this->__container->current();
|
||||
}
|
||||
|
||||
#[\ReturnTypeWillChange]
|
||||
function key() {
|
||||
return $this->__container->key();
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ if (!file_exists(PROJECT_PATH_ROOT . 'vendor/')) {
|
|||
|
||||
require PROJECT_PATH_ROOT . 'vendor/autoload.php';
|
||||
|
||||
# Bootstraping Flake
|
||||
# Bootstrapping Flake
|
||||
\Flake\Framework::bootstrap();
|
||||
|
||||
# Bootstrapping Baïkal
|
||||
|
|
|
@ -47,7 +47,7 @@ if (!file_exists(PROJECT_PATH_ROOT . 'vendor/')) {
|
|||
|
||||
require PROJECT_PATH_ROOT . 'vendor/autoload.php';
|
||||
|
||||
# Bootstraping Flake
|
||||
# Bootstrapping Flake
|
||||
\Flake\Framework::bootstrap();
|
||||
|
||||
# Bootstrapping Baïkal
|
||||
|
|
|
@ -46,7 +46,7 @@ if (!file_exists(PROJECT_PATH_ROOT . 'vendor/')) {
|
|||
}
|
||||
require PROJECT_PATH_ROOT . 'vendor/autoload.php';
|
||||
|
||||
# Bootstraping Flake
|
||||
# Bootstrapping Flake
|
||||
\Flake\Framework::bootstrap();
|
||||
|
||||
# Bootstrapping Baïkal
|
||||
|
|
Loading…
Add table
Reference in a new issue