Completed
Push — master ( e36450...afb05a )
by Josh
02:57
created
src/AbstractPackage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     public function getPath(string $relativePath = '') : string
63 63
     {
64
-        return $this->dirPath . (strlen($relativePath) ? DIRECTORY_SEPARATOR . $relativePath : '');
64
+        return $this->dirPath.(strlen($relativePath) ? DIRECTORY_SEPARATOR.$relativePath : '');
65 65
     }
66 66
 
67 67
     /**
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         if (null === $this->directDependencies) {
95 95
             $packageNames = array_keys($this->getConfig('require', $default = []));
96 96
             $packages = @array_map(
97
-                function ($packageName) {
97
+                function($packageName) {
98 98
                     return $this->root->getPackages()->getPackage($packageName);
99 99
                 },
100 100
                 $packageNames
Please login to merge, or discard this patch.
src/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Composed;
3 3
 
4
-define(__NAMESPACE__ . '\VENDOR_DIR', Internal\findVendorDir());
5
-define(__NAMESPACE__ . '\BASE_DIR', Internal\findBaseDir(VENDOR_DIR));
4
+define(__NAMESPACE__.'\VENDOR_DIR', Internal\findVendorDir());
5
+define(__NAMESPACE__.'\BASE_DIR', Internal\findBaseDir(VENDOR_DIR));
6 6
 
7 7
 function packages($includeRoot = true) : PackageCollection
8 8
 {
Please login to merge, or discard this patch.