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

Commit 994551d

Browse files
authored
remove (string) cast on $dependenciesIdentifier at setDependenciesIdentifier()
as function parameter already use `string` type.
1 parent 350dc96 commit 994551d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ZendModuleProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function getDependenciesIdentifier() : string
119119

120120
public function setDependenciesIdentifier(string $dependenciesIdentifier) : void
121121
{
122-
$this->dependenciesIdentifier = (string) $dependenciesIdentifier;
122+
$this->dependenciesIdentifier = $dependenciesIdentifier;
123123
}
124124

125125
private function getModuleDependencies() : array

0 commit comments

Comments
 (0)