Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <ruleset name="PHP_CodeSniffer">
  3. <description>Coding standard for a Laravel app.</description>
  4. <file>app</file>
  5. <file>tests</file>
  6. <exclude-pattern>*/migrations/*</exclude-pattern>
  7. <arg value="np"/>
  8. <rule ref="PSR2"/>
  9. <rule ref="Squiz.Commenting.FunctionComment" />
  10. <rule ref="Squiz.Commenting.FunctionCommentThrowTag" />
  11. <rule ref="Squiz.Commenting.ClassComment" />
  12. <rule ref="Squiz.Commenting.VariableComment" />
  13. <rule ref="Squiz.PHP.ForbiddenFunctions">
  14. <properties>
  15. <property name="forbiddenFunctions" type="array" value="eval=>NULL,dd=>NULL,die=>NULL,var_dump=>NULL,sizeof=>count,delete=>unset,print=>echo,create_function=>NULL"/>
  16. </properties>
  17. </rule>
  18. </ruleset>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement