Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Remove last line in class
Browse files Browse the repository at this point in the history
between the last method and the curly brace of the class end

e.g.
from:
    public function foo()
    {
        // method body
    }

}

to:
    public function foo()
    {
        // method body
    }
}
  • Loading branch information
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/StandardAutoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,5 +327,4 @@ protected function normalizeDirectory($directory)
$directory .= DIRECTORY_SEPARATOR;
return $directory;
}

}

0 comments on commit 52528b3

Please sign in to comment.