@@ -1,8 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // if library is in dev environement with its own vendor, include its autoload |
4 | -if(file_exists(__DIR__ . '/vendor')) |
|
4 | +if(file_exists(__DIR__ . '/vendor')) { |
|
5 | 5 | require_once __DIR__ . '/vendor/autoload.php'; |
6 | +} |
|
6 | 7 | // if library is in vendor of another project, include the global autolaod |
7 | -else |
|
8 | +else { |
|
8 | 9 | require_once __DIR__ . '/../../autoload.php'; |
10 | +} |
@@ -52,7 +52,7 @@ |
||
52 | 52 | |
53 | 53 | if ($this->path->firstPoint()->getX() > $x) { |
54 | 54 | $containingLine = $this->path->firstLine(); |
55 | - } else { |
|
55 | + } else { |
|
56 | 56 | $containingLine = $this->path->lastLine(); |
57 | 57 | } |
58 | 58 | } |