Skip to content

Commit b635f2c

Browse files
committed
Added @license tags
1 parent fe4d52c commit b635f2c

File tree

12 files changed

+13
-1
lines changed

12 files changed

+13
-1
lines changed

src/Database/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @version 1.0.0
2222
* @since 1.0.0-alpha
23-
*
23+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
2424
*/
2525
class Connection {
2626
//Class constants

src/Database/Procedures/PreparedStatement.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*
1717
* @version 1.0.0
1818
* @since 1.0.0-alpha
19+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
1920
*/
2021

2122
class PreparedStatement extends Query {

src/Database/Procedures/Query.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*
1616
* @version 1.0.0
1717
* @since 1.0.0-alpha
18+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
1819
*
1920
*/
2021
class Query {

src/Database/Procedures/StatementSet.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
*
6666
* @version 1.0.0
6767
* @since 1.0.0-alpha
68+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
6869
*
6970
*/
7071
class StatementSet implements \Countable, \Iterator, \ArrayAccess {

src/Database/Procedures/Transaction.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
*
3434
* @version 1.0.0
3535
* @since 1.0.0-alpha
36+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
3637
*
3738
*/
3839

src/Database/oneShot.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*
2222
* @version 1.0.0
2323
* @since 1.0.0-alpha
24+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
2425
*/
2526
function oneShot(Query|StatementSet|Transaction $query, array|object|null $input = null) : array|ResultSet|bool|null {
2627
$namespaceComponents = explode('\\', get_class($query));

src/Structures/Model.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
*
1515
* @version 1.0.0
1616
* @since 1.0.0-alpha
17+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
1718
*/
1819
class Model implements \ArrayAccess, \Iterator, \Countable {
1920

src/Structures/ResultSet.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*
1111
* @version 1.0.0
1212
* @since 1.0.0-alpha
13+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
1314
*/
1415
class ResultSet implements \ArrayAccess, \Iterator, \Countable {
1516
private array $_columns = [];

src/Structures/VeloxQL.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
*
3030
* @version 1.0.0
3131
* @since 1.0.0-alpha
32+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
3233
*/
3334
class VeloxQL {
3435
public array $select;

src/Support/ErrorHandling.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
*
1010
* @version 1.0.0
1111
* @since 1.0.0-alpha
12+
* @license https://www.mozilla.org/en-US/MPL/2.0/ Mozilla Public License 2.0
1213
* */
1314
function VeloxExceptionHandler(\Throwable $ex) : void {
1415
function getExceptionObject(\Throwable $ex) : object {

0 commit comments

Comments
 (0)