mirror of
https://github.com/php-fig/sculpin.git
synced 2026-03-24 07:02:06 +01:00
* Add a test to demonstrate a problem with custom bundle event subscribers * Add a new compiler pass to make kernel.event_subscriber services public * Apply code sniffer suggestion and add an exclude pattern.
16 lines
420 B
XML
16 lines
420 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Sculpin">
|
|
<description>PSR-2 based coding standard.</description>
|
|
<arg name="encoding" value="utf-8"/>
|
|
<arg name="colors"/>
|
|
<arg value="p"/>
|
|
|
|
<file>./src/</file>
|
|
|
|
<exclude-pattern>*/__BlankSculpinProject__/*</exclude-pattern>
|
|
<exclude-pattern>*/__EventListenerFixture__/*</exclude-pattern>
|
|
|
|
<rule ref="PSR2"/>
|
|
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
|
|
</ruleset>
|