Skip to content

Commit 2d27bdd

Browse files
author
Andrey Helldar
committed
Added copyrights
1 parent 4b23cfc commit 2d27bdd

16 files changed

+241
-0
lines changed

phpunit.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!--
4+
~ This file is part of the "dragon-code/pretty-array" project.
5+
~
6+
~ For the full copyright and license information, please view the LICENSE
7+
~ file that was distributed with this source code.
8+
~
9+
~ @author Andrey Helldar <[email protected]>
10+
~
11+
~ @copyright 2021 Andrey Helldar
12+
~
13+
~ @license MIT
14+
~
15+
~ @see https://github.com/TheDragonCode/pretty-array
16+
-->
17+
218
<phpunit
319
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
420
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

src/Concerns/HasCases.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace DragonCode\PrettyArray\Concerns;
419

520
use DragonCode\PrettyArray\Exceptions\UnknownCaseTypeException;

src/Concerns/HasCastable.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace DragonCode\PrettyArray\Concerns;
419

520
trait HasCastable

src/Exceptions/FileDoesntExistsException.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace DragonCode\PrettyArray\Exceptions;
419

520
use Exception;

src/Exceptions/UnknownCaseTypeException.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace DragonCode\PrettyArray\Exceptions;
419

520
class UnknownCaseTypeException extends \Exception

src/Services/File.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace DragonCode\PrettyArray\Services;
419

520
use DragonCode\PrettyArray\Exceptions\FileDoesntExistsException;

src/Services/Formatter.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace DragonCode\PrettyArray\Services;
419

520
use DragonCode\Contracts\Pretty\Arr\Caseable;

tests/FormatterAlignRawTest.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace Tests;
419

520
class FormatterAlignRawTest extends TestCase

tests/FormatterRawTest.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace Tests;
419

520
class FormatterRawTest extends TestCase

tests/FormatterSimpleTest.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of the "dragon-code/pretty-array" project.
5+
*
6+
* For the full copyright and license information, please view the LICENSE
7+
* file that was distributed with this source code.
8+
*
9+
* @author Andrey Helldar <[email protected]>
10+
*
11+
* @copyright 2021 Andrey Helldar
12+
*
13+
* @license MIT
14+
*
15+
* @see https://github.com/TheDragonCode/pretty-array
16+
*/
17+
318
namespace Tests;
419

520
class FormatterSimpleTest extends TestCase

0 commit comments

Comments
 (0)