Completed
Push — master ( c80620...0cd8d9 )
by Martijn
03:25
created
src/autoloader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-spl_autoload_register(function ($class) {
3
+spl_autoload_register(function($class) {
4 4
     static $prefix = 'Vanderlee\\Comprehend\\';
5 5
     if (stripos($class, $prefix) === 0) {
6 6
         $file = __DIR__ . DIRECTORY_SEPARATOR . str_ireplace($prefix, '', $class) . '.php';
Please login to merge, or discard this patch.