Files
archived-sculpin/phpcs.xml
Kevin Boyd 2ddd5217d3 Fix BC Break with services tagged kernel.event_subscriber (#410)
* 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.
2019-03-06 21:17:37 -08:00

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>