Skip to content

Commit

Permalink
Replace String type with string in PHP code samples
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdifabio committed Oct 31, 2018
1 parent 5ec5361 commit 69fccac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ abstract class Foo
{
abstract function barProperty(): Bar;

function derivedProperty(): String
function derivedProperty(): string
{
return someFunctionOf($this->barProperty());
}
Expand All @@ -305,7 +305,7 @@ abstract class Foo
/**
* @Memoized
*/
function derivedProperty(): String
function derivedProperty(): string
{
return someFunctionOf($this->barProperty());
}
Expand Down

0 comments on commit 69fccac

Please sign in to comment.