Skip to content

Commit

Permalink
Fixed return type
Browse files Browse the repository at this point in the history
  • Loading branch information
siad007 committed Apr 6, 2021
1 parent 64d9048 commit ee5bedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Phing/Project.php
Original file line number Diff line number Diff line change
Expand Up @@ -292,10 +292,10 @@ public function setInheritedProperty(string $name, $value): void
* May be <code>null</code>, in which case
* the return value is also <code>null</code>.
*
* @return string|null the property value, or <code>null</code> for no match
* @return mixed the property value, or <code>null</code> for no match
* or if a <code>null</code> name is provided
*/
public function getProperty(?string $name): ?string
public function getProperty(?string $name)
{
return PropertyHelper::getPropertyHelper($this)->getProperty(null, $name);
}
Expand Down

0 comments on commit ee5bedc

Please sign in to comment.