Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
sdobreff committed Oct 30, 2023
1 parent b4caf96 commit 0e05a45
Show file tree
Hide file tree
Showing 145 changed files with 21,864 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ phpunit.xml
phpcs.xml
.phpcs.xml
phpstan.neon
WordPress/.DS_Store
.DS_Store
40 changes: 40 additions & 0 deletions Modernize/Docs/FunctionCalls/DirnameStandard.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0"?>
<documentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://phpcsstandards.github.io/PHPCSDevTools/phpcsdocs.xsd"
title="Function Calls to Dirname"
>
<standard>
<![CDATA[
PHP >= 5.3: Usage of dirname(__FILE__) can be replaced with __DIR__.
]]>
</standard>
<code_comparison>
<code title="Valid: Using __DIR__.">
<![CDATA[
$path = <em>__DIR__</em>;
]]>
</code>
<code title="Invalid: dirname(__FILE__).">
<![CDATA[
$path = <em>dirname(__FILE__)</em>;
]]>
</code>
</code_comparison>
<standard>
<![CDATA[
PHP >= 7.0: Nested calls to dirname() can be replaced by using dirname() with the $levels parameter.
]]>
</standard>
<code_comparison>
<code title="Valid: Using dirname() with the $levels parameter.">
<![CDATA[
$path = <em>dirname($file, 3)</em>;
]]>
</code>
<code title="Invalid: Nested function calls to dirname().">
<![CDATA[
$path = <em>dirname(dirname(dirname($file)))</em>;
]]>
</code>
</code_comparison>
</documentation>
Loading

0 comments on commit 0e05a45

Please sign in to comment.