Skip to content

Commit ecea418

Browse files
committed
Fix typo in excludeNamespace
1 parent a62e38e commit ecea418

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"phpfui/html-unit-tester": ">=1.0",
2828
"roave/security-advisories": "dev-latest",
2929
"phpfui/phpunit-syntax-coverage": ">=1.0",
30-
"friendsofphp/php-cs-fixer": "^2.18"
30+
"friendsofphp/php-cs-fixer": "^2.18",
31+
"vimeo/psalm": "^4.7"
3132
}
3233
}

src/PHPFUI/InstaDoc/FileManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function delete(string $fileName = '') : int
8888
*/
8989
public function excludeNamespace(string $namespace) : FileManager
9090
{
91-
return $this->excludedNamespaces([$namespace]);
91+
return $this->excludeNamespaces([$namespace]);
9292
}
9393

9494
/**

0 commit comments

Comments
 (0)