mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 23:33:00 +03:00
[hack/pt-br] Fixed some typos
This commit is contained in:
parent
29ea66dbef
commit
09f8a34244
@ -285,7 +285,7 @@ interface InterfaceGatinho
|
||||
public function brinca() : void;
|
||||
}
|
||||
|
||||
trait TraitGato implements GatinhoInterface
|
||||
trait TraitGato implements InterfaceGatinho
|
||||
{
|
||||
public function brinca() : void
|
||||
{
|
||||
@ -300,7 +300,7 @@ class Samuel
|
||||
|
||||
|
||||
$gato = new Samuel();
|
||||
$gato instanceof GatinhoInterface === true; // True
|
||||
$gato instanceof InterfaceGatinho === true; // True
|
||||
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user