mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-15 19:24:50 +02:00
[hack/pt-br] Fixed some typos
This commit is contained in:
@@ -285,7 +285,7 @@ interface InterfaceGatinho
|
|||||||
public function brinca() : void;
|
public function brinca() : void;
|
||||||
}
|
}
|
||||||
|
|
||||||
trait TraitGato implements GatinhoInterface
|
trait TraitGato implements InterfaceGatinho
|
||||||
{
|
{
|
||||||
public function brinca() : void
|
public function brinca() : void
|
||||||
{
|
{
|
||||||
@@ -300,7 +300,7 @@ class Samuel
|
|||||||
|
|
||||||
|
|
||||||
$gato = new Samuel();
|
$gato = new Samuel();
|
||||||
$gato instanceof GatinhoInterface === true; // True
|
$gato instanceof InterfaceGatinho === true; // True
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user