PHP Classes

File: phpcs.xml

Recommend this page to a friend!
  Classes of Andrey Iatsenko   Typer PHP Type Casting Class   phpcs.xml   Download  
File: phpcs.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Typer PHP Type Casting Class
Assure that array entry values have a given types
Author: By
Last change:
Date: 2 months ago
Size: 830 bytes
 

Contents

Class file image Download
<?xml version="1.0"?> <ruleset name="plainToClass"> <arg name="tab-width" value="4"/> <!-- Description --> <description>Custom ruleset Based on PSR12</description> <!-- Rule to be referenced (`PSR12`) --> <rule ref="PSR12"/> <!-- Specify extensions (.php) --> <arg name="extensions" value="php"/> <arg name="report" value="full"/> <arg name="report-junit" value="./public/phpcs-junit.xml"/> <!-- ????? ?????? --> <rule ref="Generic.Files.LineLength"> <properties> <property name="lineLimit" value="180"/> <property name="absoluteLineLimit" value="0"/> </properties> </rule> <rule ref="PEAR.Commenting.FunctionComment.Missing"> <exclude-pattern>tests/*</exclude-pattern> </rule> <file>src/</file> </ruleset>