Commit dfd12295 authored by Anton Smirnov's avatar Anton Smirnov
Browse files

Declare license

parent 00349bea
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
<ruleset>
    <rule ref="SandFox_PHP70">
        <exclude name="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingNativeTypeHint"/>
        <exclude nane="SlevomatCodingStandard.ControlStructures.DisallowYodaComparison.DisallowedYodaComparison"/><!-- false positives -->
        <exclude name="SlevomatCodingStandard.ControlStructures.DisallowYodaComparison"/><!-- false positives -->
        <exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps"/>
        <exclude name="PSR2.Methods.MethodDeclaration.Underscore"/>
    </rule>
+5 −0
Original line number Diff line number Diff line
<?php

/**
 * @copyright 2022 Anton Smirnov
 * @license BSD-2-Clause https://spdx.org/licenses/BSD-2-Clause.html
 */

declare(strict_types=1);

namespace Arokettu\Unsigned;
+5 −0
Original line number Diff line number Diff line
<?php

/**
 * @copyright 2022 Anton Smirnov
 * @license BSD-2-Clause https://spdx.org/licenses/BSD-2-Clause.html
 */

declare(strict_types=1);

namespace Arokettu\Unsigned;
+5 −0
Original line number Diff line number Diff line
<?php

/**
 * @copyright 2022 Anton Smirnov
 * @license BSD-2-Clause https://spdx.org/licenses/BSD-2-Clause.html
 */

declare(strict_types=1);

namespace Arokettu\Unsigned\Tests;
+5 −0
Original line number Diff line number Diff line
<?php

/**
 * @copyright 2022 Anton Smirnov
 * @license BSD-2-Clause https://spdx.org/licenses/BSD-2-Clause.html
 */

declare(strict_types=1);

namespace Arokettu\Unsigned\Tests;
Loading