Closed KEINOS closed 4 years ago
https://github.com/KEINOS/TPL-PHP-HelloWorld/blob/c51c9da747eaa252e5d0b27d6b785432327fea50/tests/FunctionsTest.php#L11
The above "testHelloWorld" method will be re-written and it fails if the package name or the repo dir name is in snake_case or kebab-case.
testHelloWorld
For example, MY-SAMPLE becomes function testMy_Sample() which will fail violate the PHP-CS naming regulations.
MY-SAMPLE
function testMy_Sample()
https://github.com/KEINOS/TPL-PHP-HelloWorld/blob/c51c9da747eaa252e5d0b27d6b785432327fea50/tests/FunctionsTest.php#L11
The above "
testHelloWorld
" method will be re-written and it fails if the package name or the repo dir name is in snake_case or kebab-case.For example,
MY-SAMPLE
becomesfunction testMy_Sample()
which will fail violate the PHP-CS naming regulations.