Skip to content

Commit 185b77e

Browse files
committed
[TASK] Add license to each file
1 parent 7952cc5 commit 185b77e

File tree

6 files changed

+54
-0
lines changed

6 files changed

+54
-0
lines changed

src/Graphs/DependencyInjection/Configuration.php

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* This file is part of phpDocumentor.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @link https://phpdoc.org
12+
*/
13+
514
namespace phpDocumentor\Guides\Graphs\DependencyInjection;
615

716
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;

src/Graphs/DependencyInjection/GraphsExtension.php

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* This file is part of phpDocumentor.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @link https://phpdoc.org
12+
*/
13+
514
namespace phpDocumentor\Guides\Graphs\DependencyInjection;
615

716
use Symfony\Component\Config\FileLocator;

src/Graphs/Directives/UmlDirective.php

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* This file is part of phpDocumentor.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @link https://phpdoc.org
12+
*/
13+
514
namespace phpDocumentor\Guides\Graphs\Directives;
615

716
use phpDocumentor\Guides\Graphs\Nodes\UmlNode;

src/Graphs/Renderer/PlantumlServerRenderer.php

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* This file is part of phpDocumentor.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @link https://phpdoc.org
12+
*/
13+
514
namespace phpDocumentor\Guides\Graphs\Renderer;
615

716
use phpDocumentor\Guides\RenderContext;

src/Graphs/Renderer/TestRenderer.php

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* This file is part of phpDocumentor.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @link https://phpdoc.org
12+
*/
13+
514
namespace phpDocumentor\Guides\Graphs\Renderer;
615

716
use phpDocumentor\Guides\RenderContext;

tests/unit/Nodes/UmlNodeTest.php

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* This file is part of phpDocumentor.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* @link https://phpdoc.org
12+
*/
13+
514
namespace phpDocumentor\Guides\Graphs\Nodes;
615

716
use PHPUnit\Framework\TestCase;

0 commit comments

Comments
 (0)