1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Fix typos detected by misspell (#924)

Both of initiali[sz]e were used, z was more common.
This commit is contained in:
Tyson Andre 2018-08-01 21:40:51 -07:00 committed by Matthew Brown
parent 9ebf748eb9
commit 06abf52d94
3 changed files with 5 additions and 5 deletions

View File

@ -647,7 +647,7 @@ class B extends A {
### MethodSignatureMustOmitReturnType
Emmitted when a `__clone`, `__construct`, or `__destruct` method is defined with a return type.
Emitted when a `__clone`, `__construct`, or `__destruct` method is defined with a return type.
```php
class A {
@ -728,7 +728,7 @@ function foo(int $i = 5, string $j) : void {}
### MissingClosureParamType
Emitted when a closure paramter has no type information associated with it
Emitted when a closure parameter has no type information associated with it
```php
$a = function($a): string {
@ -789,7 +789,7 @@ require("nonexistent.php");
### MissingParamType
Emitted when a function paramter has no type information associated with it
Emitted when a function parameter has no type information associated with it
```php
function foo($a) : void {}

View File

@ -45,7 +45,7 @@ class PropertyAssignmentChecker
* @param PhpParser\Node\Expr|null $assignment_value
* @param Type\Union $assignment_value_type
* @param Context $context
* @param bool $direct_assignment whether the variable is assigned explictly
* @param bool $direct_assignment whether the variable is assigned explicitly
*
* @return false|null
*/

View File

@ -113,7 +113,7 @@ class StaticCallChecker extends \Psalm\Checker\Statements\Expression\CallChecker
if ($context->collect_mutations) {
$file_checker->getMethodMutations($method_id, $context);
} else {
// collecting initalisations
// collecting initializations
$local_vars_in_scope = [];
$local_vars_possibly_in_scope = [];