@@ -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 @@ |
||
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 @@ 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\Modify\Encoding; |
15 | 15 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | $postfix = $this->getOption('postfix', $encoding); |
57 | 57 | $output = $this->getTargetFile($file, $postfix) |
58 | - ->setEncoding($encoding); |
|
58 | + ->setEncoding($encoding); |
|
59 | 59 | |
60 | 60 | $cmd = "iconv " . |
61 | 61 | ($file->getEncoding() ? "--from-code={$file->getEncoding()} " : '') . |
@@ -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 |