@@ -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\Modify; |
15 | 15 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | { |
220 | 220 | $file = m::mock(FileNodeInterface::class); |
221 | 221 | $file->shouldReceive('__toString') |
222 | - ->andReturn('some/file/here'); |
|
222 | + ->andReturn('some/file/here'); |
|
223 | 223 | |
224 | 224 | $this->expectException(InvalidArgumentException::class); |
225 | 225 | |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | $process = m::mock(Process::class)->makePartial(); |
232 | 232 | $process->shouldReceive('isSuccessful')->andReturn(false); |
233 | 233 | $this->processFactory->shouldReceive('createProcess') |
234 | - ->andReturn($process); |
|
234 | + ->andReturn($process); |
|
235 | 235 | |
236 | 236 | $file = new LocalFile(static::$dir . 'failed_tail.test'); |
237 | 237 | $file->put('nothing interesting here'); |
@@ -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\Format; |
15 | 15 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $this->formatAware->setFormat($format); |
44 | 44 | |
45 | 45 | $format->shouldReceive('getType') |
46 | - ->andReturn('test_format'); |
|
46 | + ->andReturn('test_format'); |
|
47 | 47 | |
48 | 48 | static::assertEquals('test_format', $this->formatAware->getFormatType()); |
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\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 |