Fix typos in documentation and code comments (#1733)

- Fixed 'seperate' to 'separate' in README.md (2 occurrences)
- Fixed 'columname' to 'columnname' in README.md (2 occurrences)
- Fixed 'Wether' to 'Whether' in src/Method.php PHPDoc comments (2 occurrences)
This commit is contained in:
Keita Shima
2025-09-15 14:14:26 +02:00
committed by GitHub
parent 53854ea7d9
commit 8dff6bb5ff
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -178,7 +178,7 @@ class Method
/**
* Get the parameters for this method
*
* @param bool $implode Wether to implode the array or not
* @param bool $implode Whether to implode the array or not
* @return string
*/
public function getParams($implode = true)
@@ -208,7 +208,7 @@ class Method
/**
* Get the parameters for this method including default values
*
* @param bool $implode Wether to implode the array or not
* @param bool $implode Whether to implode the array or not
* @return string
*/
public function getParamsWithDefault($implode = true)