Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 44db2ae

Browse files
committedDec 31, 2024
fixed: Code style fix
1 parent b68c0e5 commit 44db2ae

File tree

98 files changed

+300
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+300
-108
lines changed
 

‎phpcs.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,11 @@
66
<file>src</file>
77
<file>test</file>
88

9-
<rule ref="PSR2"/>
9+
<rule ref="PSR2"/>
1010
<rule ref="Generic.Arrays.DisallowLongArraySyntax.Found"/>
1111

1212
<config name="installed_paths" value="../../slevomat/coding-standard"/>
1313
<rule ref="SlevomatCodingStandard.TypeHints.DeclareStrictTypes">
14-
<properties>
15-
<property name="newlinesCountBetweenOpenTagAndDeclare" value="0"/>
16-
<property name="spacesCountAroundEqualsSign" value="0"/>
17-
</properties>
1814
</rule>
1915
<rule ref="SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses"/>
2016
<rule ref="SlevomatCodingStandard.TypeHints.ReturnTypeHintSpacing"/>

‎src/Command/Mysql/MysqlCommandAbstract.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Pongee\DatabaseSchemaVisualization\Command\Mysql;
46

0 commit comments

Comments
 (0)
Please sign in to comment.