@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | { |
| 58 | 58 | // optimize autoloader with custom path |
| 59 | 59 | return $this->taskComposerInstall() |
| 60 | - ->preferDist() |
|
| 61 | - ->optimizeAutoloader() |
|
| 62 | - ->run(); |
|
| 60 | + ->preferDist() |
|
| 61 | + ->optimizeAutoloader() |
|
| 62 | + ->run(); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -71,9 +71,9 @@ discard block |
||
| 71 | 71 | { |
| 72 | 72 | // optimize autoloader with custom path |
| 73 | 73 | return $this->taskComposerUpdate() |
| 74 | - ->preferDist() |
|
| 75 | - ->optimizeAutoloader() |
|
| 76 | - ->run(); |
|
| 74 | + ->preferDist() |
|
| 75 | + ->optimizeAutoloader() |
|
| 76 | + ->run(); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
@@ -94,10 +94,10 @@ discard block |
||
| 94 | 94 | public function prepare() |
| 95 | 95 | { |
| 96 | 96 | return $this->taskFileSystemStack() |
| 97 | - ->mkdir($this->properties['dist.dir']) |
|
| 98 | - ->mkdir($this->properties['target.dir']) |
|
| 99 | - ->mkdir(sprintf('%s/reports', $this->properties['target.dir'])) |
|
| 100 | - ->run(); |
|
| 97 | + ->mkdir($this->properties['dist.dir']) |
|
| 98 | + ->mkdir($this->properties['target.dir']) |
|
| 99 | + ->mkdir(sprintf('%s/reports', $this->properties['target.dir'])) |
|
| 100 | + ->run(); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | /** |
@@ -167,8 +167,8 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | // run PHPUnit |
| 169 | 169 | return $this->taskPHPUnit(sprintf('%s/bin/phpunit', $this->properties['vendor.dir'])) |
| 170 | - ->configFile('phpunit.xml') |
|
| 171 | - ->run(); |
|
| 170 | + ->configFile('phpunit.xml') |
|
| 171 | + ->run(); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
@@ -86,8 +86,8 @@ |
||
| 86 | 86 | // load the columns from the metadata |
| 87 | 87 | $columns = array_filter( |
| 88 | 88 | $columnMetadataLoader->load($entityType), |
| 89 | - function ($value) { |
|
| 90 | - return $value['Key'] !== 'PRI' && $value['Null'] === 'NO' ; |
|
| 89 | + function($value) { |
|
| 90 | + return $value['Key'] !== 'PRI' && $value['Null'] === 'NO'; |
|
| 91 | 91 | } |
| 92 | 92 | ); |
| 93 | 93 | // initialize the raw entities and their default values, if available |