-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial Upgrade to CakePHP 5.x #23
Conversation
Please revert the unnecessary changes to |
The static analysis error |
@@ -21,27 +23,27 @@ class ChecksumTestFixture extends TestFixture | |||
* | |||
* @var array<string, string> | |||
*/ | |||
protected static $_tableHashes = []; | |||
protected static array $tableHashes = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The removal of underscore from the properties and methods is unnecessary noise.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
restored
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arusinowski the following methods are still changed:
_getTableKey()
_tableUnmodified()
_hash()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
restored
@@ -21,27 +23,27 @@ class ChecksumTestFixture extends TestFixture | |||
* | |||
* @var array<string, string> | |||
*/ | |||
protected static $_tableHashes = []; | |||
protected static array $tableHashes = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arusinowski the following methods are still changed:
_getTableKey()
_tableUnmodified()
_hash()
Initial Upgrade to CakePHP 5.x (#23)
Hi, this is fixturize plugin upgraded to CakePHP 5.0, to merge it the
3.next
branch need to be created. Please review. I will update this branch when the CakePHP5 is released. Thanks