Commit 6187224b authored by Anton Smirnov's avatar Anton Smirnov
Browse files

Code style

parent 37fa4f87
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3,7 +3,9 @@
    @see https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-Ruleset
-->
<ruleset name="Custom Standard" namespace="MyProject\CS\Standard">
    <rule ref="SandFox_PHP70"/>
    <rule ref="SandFox_PHP70">
        <exclude name="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingNativeTypeHint"/>
    </rule>
    <rule ref="SlevomatCodingStandard.Namespaces.FullyQualifiedGlobalFunctions">
        <properties>
            <!-- Reset to default (include all functions) -->
+2 −2
Original line number Diff line number Diff line
@@ -355,7 +355,7 @@ class ArithmeticIntTest extends TestCase

    public function testDivModFromUuid2SameCaseButFor64Bit()
    {
        if (PHP_INT_SIZE < 8) {
        if (\PHP_INT_SIZE < 8) {
            $this->markTestSkipped();
        }

@@ -373,7 +373,7 @@ class ArithmeticIntTest extends TestCase

    public function testDivModBigButBFits()
    {
        if (PHP_INT_SIZE < 8) {
        if (\PHP_INT_SIZE < 8) {
            $this->markTestSkipped();
        }