@@ -10,7 +10,7 @@ |
||
10 | 10 | |
11 | 11 | class PickValidatorTest extends TestCase { |
12 | 12 | function setUp() { |
13 | - $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php'; |
|
13 | + $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php'; |
|
14 | 14 | $draftDataRepository = new DraftDataRepository($this->app); |
15 | 15 | $this->app['phpdraft.DraftDataRepository'] = $draftDataRepository; |
16 | 16 | $this->sut = new PickValidator($this->app); |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | class ProPlayerValidatorTest extends TestCase { |
9 | 9 | function setUp() { |
10 | - $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php'; |
|
10 | + $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php'; |
|
11 | 11 | $draftDataRepository = new DraftDataRepository($this->app); |
12 | 12 | $this->sut = new ProPlayerValidator($this->app); |
13 | 13 | $this->app['phpdraft.DraftDataRepository'] = $draftDataRepository; |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | class TradeValidatorTest extends TestCase { |
13 | 13 | function setUp() { |
14 | - $this->app = require dirname(__FILE__).'/../../../../api/config/_app.php'; |
|
14 | + $this->app = require dirname(__FILE__) . '/../../../../api/config/_app.php'; |
|
15 | 15 | $this->draft = new Draft(); |
16 | 16 | $this->trade = new Trade(); |
17 | 17 | $this->trade->manager1 = new Manager(); |