Skip to content

Commit db5da17

Browse files
committed
Separate license information from file description
1 parent bc037fc commit db5da17

File tree

6 files changed

+41
-40
lines changed

6 files changed

+41
-40
lines changed

src/Debug.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
<?php
2-
3-
/**
4-
* Settings for use in debug functions.
5-
*
6-
* @copyright Fabian Wiget <fabacino@gmail.com>
2+
/*
3+
* © Fabian Wiget <fabacino@gmail.com>
74
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
5+
* For the full copyright and license information, please view
6+
* the LICENSE file that was distributed with this source code.
107
*/
118

129
namespace Fabacino\Debug;
@@ -16,6 +13,9 @@
1613
use Monolog\Handler\NullHandler;
1714
use Monolog\Handler\StreamHandler;
1815

16+
/**
17+
* Main class.
18+
*/
1919
class Debug
2020
{
2121
/**

src/debug-functions.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?php
2+
/*
3+
* © Fabian Wiget <fabacino@gmail.com>
4+
*
5+
* For the full copyright and license information, please view
6+
* the LICENSE file that was distributed with this source code.
7+
*/
28

39
/**
410
* Debug functions.
5-
*
6-
* @copyright Fabian Wiget <fabacino@gmail.com>
7-
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
1011
*/
1112

1213
use Fabacino\Debug\Debug;

tests/DbgTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
2-
3-
/**
4-
* Tests for function `dbg`.
5-
*
6-
* @copyright Fabian Wiget <fabacino@gmail.com>
2+
/*
3+
* © Fabian Wiget <fabacino@gmail.com>
74
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
5+
* For the full copyright and license information, please view
6+
* the LICENSE file that was distributed with this source code.
107
*/
118

129
namespace Fabacino\Debug\Test;
1310

11+
/**
12+
* Tests for function `dbg`.
13+
*/
1414
class DbgTest extends \PHPUnit\Framework\TestCase
1515
{
1616
/**

tests/DbglogTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
<?php
2-
3-
/**
4-
* Tests for function `dbglog`.
5-
*
6-
* @copyright Fabian Wiget <fabacino@gmail.com>
2+
/*
3+
* © Fabian Wiget <fabacino@gmail.com>
74
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
5+
* For the full copyright and license information, please view
6+
* the LICENSE file that was distributed with this source code.
107
*/
118

129
namespace Fabacino\Debug\Test;
@@ -16,6 +13,9 @@
1613
use Monolog\Formatter\LineFormatter;
1714
use Monolog\Handler\StreamHandler;
1815

16+
/**
17+
* Tests for function `dbglog`.
18+
*/
1919
class DbglogTest extends \PHPUnit\Framework\TestCase
2020
{
2121
/**

tests/DbgrTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?php
2-
3-
/**
4-
* Tests for function `dbgr`.
5-
*
6-
* @copyright Fabian Wiget <fabacino@gmail.com>
2+
/*
3+
* © Fabian Wiget <fabacino@gmail.com>
74
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
5+
* For the full copyright and license information, please view
6+
* the LICENSE file that was distributed with this source code.
107
*/
118

129
namespace Fabacino\Debug\Test;
1310

1411
use Fabacino\Debug\Debug;
1512

13+
/**
14+
* Tests for function `dbgr`.
15+
*/
1616
class DbgrTest extends \PHPUnit\Framework\TestCase
1717
{
1818
/**

tests/TestDebug.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<?php
2-
3-
/**
4-
* Debug class for testing.
5-
*
6-
* @copyright Fabian Wiget <fabacino@gmail.com>
2+
/*
3+
* © Fabian Wiget <fabacino@gmail.com>
74
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
5+
* For the full copyright and license information, please view
6+
* the LICENSE file that was distributed with this source code.
107
*/
118

129
namespace Fabacino\Debug\Test;
1310

11+
/**
12+
* Debug class for testing.
13+
*/
1414
class TestDebug extends \Fabacino\Debug\Debug
1515
{
1616
/**

0 commit comments

Comments
 (0)