Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 8e07c74

Browse files
committed
Fixed typo in DirReadable check
1 parent 0322a66 commit 8e07c74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ZendDiagnostics/Check/DirReadable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function check()
8383
return new Failure(trim($failureString), array('nonDirs' => $nonDirs, 'unreadable' => $unreadable));
8484
} else {
8585
return new Success(
86-
count($this->dir) > 1 ? 'All paths are readable directories.' : 'The path is a a readable directory.',
86+
count($this->dir) > 1 ? 'All paths are readable directories.' : 'The path is a readable directory.',
8787
$this->dir
8888
);
8989
}

0 commit comments

Comments
 (0)