File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ protected function getFileOwner($filepath)
103
103
{
104
104
$ this ->markAsSkippedIfPosixIsMissing ();
105
105
106
- return ($ datas = posix_getpwuid ($ this ->getFileOwnerId ($ filepath ))) ? $ datas ['name ' ] : null ;
106
+ return ($ data = posix_getpwuid ($ this ->getFileOwnerId ($ filepath ))) ? $ data ['name ' ] : null ;
107
107
}
108
108
109
109
protected function getFileGroupId ($ filepath )
@@ -119,8 +119,8 @@ protected function getFileGroup($filepath)
119
119
{
120
120
$ this ->markAsSkippedIfPosixIsMissing ();
121
121
122
- if ($ datas = posix_getgrgid ($ this ->getFileGroupId ($ filepath ))) {
123
- return $ datas ['name ' ];
122
+ if ($ data = posix_getgrgid ($ this ->getFileGroupId ($ filepath ))) {
123
+ return $ data ['name ' ];
124
124
}
125
125
126
126
$ this ->markTestSkipped ('Unable to retrieve file group name ' );
You can’t perform that action at this time.
0 commit comments