Skip to content

Commit

Permalink
typos in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Aug 2, 2021
1 parent e5b00c4 commit f515dd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ final class SomeClass
{
public function run()
{
$this->someStaticMethod::someStatic();
$this->someStaticMethod->someStatic();
}
}
CODE_SAMPLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ final class SomeClass
{
public function run()
{
$this->someStaticMethod::$someStatic;
$this->someStaticMethod->someStatic;
}
}
CODE_SAMPLE
Expand Down

0 comments on commit f515dd6

Please sign in to comment.