Skip to content

Commit 7df3972

Browse files
Fix typos
1 parent a424453 commit 7df3972

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/FilesystemTestCase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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');

0 commit comments

Comments
 (0)