Skip to content

Commit

Permalink
Merge pull request #27 from achmadhadikurnia/main
Browse files Browse the repository at this point in the history
Doc revisions
  • Loading branch information
achmadhadikurnia authored Nov 16, 2023
2 parents fa12f5a + 2031ec1 commit d00c80c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@ Get the methods that a class has based on its visibility type. Returned as Larav

Get public methods.
```php
method_public(MyClass::class)
method_public(MyClass::class);
```

Get protected methods.
```php
method_protected(MyClass::class)
method_protected(MyClass::class);
```

Get private methods.
```php
method_private(MyClass::class)
method_private(MyClass::class);
```

## Testing
Expand Down

0 comments on commit d00c80c

Please sign in to comment.