@@ -1,15 +1,15 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Helper; |
15 | 15 | |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | $this->logger->setLogger($logger); |
43 | 43 | |
44 | 44 | $logger->shouldReceive('log') |
45 | - ->with(LogLevel::INFO, 'Graze\DataFile\Test\Helper\FakeOptionalLogger: some text', []) |
|
46 | - ->once(); |
|
45 | + ->with(LogLevel::INFO, 'Graze\DataFile\Test\Helper\FakeOptionalLogger: some text', []) |
|
46 | + ->once(); |
|
47 | 47 | |
48 | 48 | $this->logger->doLog('some text'); |
49 | 49 | } |
@@ -1,15 +1,15 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Modify; |
15 | 15 | |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | $directory = new FileNode($fileSystem, 'random/path'); |
29 | 29 | |
30 | 30 | $fileSystem->shouldReceive('createDir') |
31 | - ->with($directory->getDirectory(), ['visibility' => 'public']) |
|
32 | - ->andReturn(false); |
|
31 | + ->with($directory->getDirectory(), ['visibility' => 'public']) |
|
32 | + ->andReturn(false); |
|
33 | 33 | $this->expectException(MakedirectoryFailedException::class); |
34 | 34 | |
35 | 35 | $maker = new MakeDirectory(); |
@@ -1,15 +1,15 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Integration\Node; |
15 | 15 | |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | $file = new FileNode($fileSystem, 'not/exists'); |
28 | 28 | |
29 | 29 | $fileSystem->shouldReceive('has') |
30 | - ->with('not/exists') |
|
31 | - ->andReturn(false); |
|
30 | + ->with('not/exists') |
|
31 | + ->andReturn(false); |
|
32 | 32 | |
33 | 33 | static::assertEquals([], $file->getContents()); |
34 | 34 | } |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | $newPath = new FileNode($fileSystem, 'some/target'); |
42 | 42 | |
43 | 43 | $fileSystem->shouldReceive('copy') |
44 | - ->with($localFile->getPath(), $newPath->getPath()) |
|
45 | - ->andReturn(false); |
|
44 | + ->with($localFile->getPath(), $newPath->getPath()) |
|
45 | + ->andReturn(false); |
|
46 | 46 | |
47 | 47 | $this->expectException(CopyFailedException::class); |
48 | 48 |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Node; |
15 | 15 |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Node; |
15 | 15 |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Node; |
15 | 15 |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Node; |
15 | 15 |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Node; |
15 | 15 |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file is part of graze/data-file |
|
4 | - * |
|
5 | - * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | - * |
|
7 | - * For the full copyright and license information, please view the LICENSE |
|
8 | - * file that was distributed with this source code. |
|
9 | - * |
|
10 | - * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | - * @link https://github.com/graze/data-file |
|
12 | - */ |
|
3 | + * This file is part of graze/data-file |
|
4 | + * |
|
5 | + * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com> |
|
6 | + * |
|
7 | + * For the full copyright and license information, please view the LICENSE |
|
8 | + * file that was distributed with this source code. |
|
9 | + * |
|
10 | + * @license https://github.com/graze/data-file/blob/master/LICENSE.md |
|
11 | + * @link https://github.com/graze/data-file |
|
12 | + */ |
|
13 | 13 | |
14 | 14 | namespace Graze\DataFile\Test\Unit\Node; |
15 | 15 |