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)
103103 {
104104 $ this ->markAsSkippedIfPosixIsMissing ();
105105
106- return ($ datas = posix_getpwuid ($ this ->getFileOwnerId ($ filepath ))) ? $ datas ['name ' ] : null ;
106+ return ($ data = posix_getpwuid ($ this ->getFileOwnerId ($ filepath ))) ? $ data ['name ' ] : null ;
107107 }
108108
109109 protected function getFileGroupId ($ filepath )
@@ -119,8 +119,8 @@ protected function getFileGroup($filepath)
119119 {
120120 $ this ->markAsSkippedIfPosixIsMissing ();
121121
122- if ($ datas = posix_getgrgid ($ this ->getFileGroupId ($ filepath ))) {
123- return $ datas ['name ' ];
122+ if ($ data = posix_getgrgid ($ this ->getFileGroupId ($ filepath ))) {
123+ return $ data ['name ' ];
124124 }
125125
126126 $ this ->markTestSkipped ('Unable to retrieve file group name ' );
You can’t perform that action at this time.
0 commit comments