Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphhh committed Aug 2, 2016
1 parent cb39d2e commit a3c36d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $reflect->isStaticMethod(); //true
```php
$reflect = new CallableReflection(array(new \DateTime(), 'modify'));
$reflect->isMethod(); //true
$reflect->isInvokedObject(); //true
$reflect->isInstanceMethod(); //true
```

##### Invoked object
Expand All @@ -73,7 +73,7 @@ class Bar{
}

$reflect = new CallableReflection(new Bar());
$reflect->isInstanceMethod(); //true
$reflect->isInvokedObject(); //true
```

#### Retrieve contexts
Expand Down

0 comments on commit a3c36d4

Please sign in to comment.