Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

Commands.h

Blame
  • phpcs.xml.dist 678 B
    <?xml version="1.0" encoding="UTF-8"?>
    
    <ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
    
        <arg name="basepath" value="."/>
        <arg name="cache" value=".phpcs-cache"/>
        <arg name="colors"/>
        <arg name="extensions" value="php"/>
    
        <rule ref="PSR12"/>
        <rule ref="Generic.Files.LineLength">
            <properties>
                <property name="lineLimit" value="150"/>
                <property name="absoluteLineLimit" value="0"/>
            </properties>
        </rule>
    
        <file>bin/</file>
        <file>config/</file>
        <file>public/</file>
        <file>src/</file>
    
    </ruleset>