1
0
mirror of https://github.com/jupeter/clean-code-php.git synced 2025-10-03 17:31:52 +02:00

Merge pull request #2 from shakibonline/master

fix method variables
This commit is contained in:
Piotr Plenik
2017-05-22 09:54:33 +02:00
committed by GitHub

View File

@@ -499,7 +499,7 @@ function createFile(name, temp = false) {
**Good**:
```php
function createFile($name) {
touch(name);
touch($name);
}
function createTempFile($name) {