mirror of https://github.com/flightphp/core
Merge pull request #531 from flightphp/code-format
PHPCS code formatting problems solvedpull/533/head
commit
9291d7a004
@ -1,10 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ruleset name="pcsg-generated-ruleset">
|
||||
<description>Created with the PHP Coding Standard Generator. http://edorian.github.io/php-coding-standard-generator/</description>
|
||||
<arg name="colors"/>
|
||||
<arg name="tab-width" value="4"/>
|
||||
<rule ref="PSR12"/>
|
||||
<!-- <rule ref="Generic.WhiteSpace.DisallowSpaceIndent"/> -->
|
||||
<file>flight/</file>
|
||||
<file>tests/</file>
|
||||
</ruleset>
|
||||
<description>
|
||||
Created with the PHP Coding Standard Generator.
|
||||
http://edorian.github.io/php-coding-standard-generator/
|
||||
</description>
|
||||
<arg name="colors" />
|
||||
<arg name="tab-width" value="4" />
|
||||
<rule ref="PSR12" />
|
||||
<file>flight/</file>
|
||||
<file>tests/</file>
|
||||
</ruleset>
|
||||
|
@ -1,23 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
||||
bootstrap="tests/phpunit_autoload.php"
|
||||
executionOrder="random"
|
||||
beStrictAboutOutputDuringTests="true"
|
||||
beStrictAboutTodoAnnotatedTests="true"
|
||||
convertDeprecationsToExceptions="true"
|
||||
stopOnError="true"
|
||||
stopOnFailure="true"
|
||||
verbose="true"
|
||||
colors="true">
|
||||
<coverage processUncoveredFiles="true">
|
||||
<include>
|
||||
<directory suffix=".php">flight/</directory>
|
||||
</include>
|
||||
</coverage>
|
||||
<testsuites>
|
||||
<testsuite name="default">
|
||||
<directory>tests/</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<logging/>
|
||||
<phpunit
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
||||
bootstrap="tests/phpunit_autoload.php"
|
||||
executionOrder="random"
|
||||
beStrictAboutOutputDuringTests="true"
|
||||
beStrictAboutTodoAnnotatedTests="true"
|
||||
convertDeprecationsToExceptions="true"
|
||||
stopOnError="true"
|
||||
stopOnFailure="true"
|
||||
verbose="true"
|
||||
colors="true">
|
||||
<coverage processUncoveredFiles="true">
|
||||
<include>
|
||||
<directory suffix=".php">flight/</directory>
|
||||
</include>
|
||||
</coverage>
|
||||
<testsuites>
|
||||
<testsuite name="default">
|
||||
<directory>tests/</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<logging />
|
||||
</phpunit>
|
||||
|
Loading…
Reference in new issue