1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

[hack/pt-br] Fixed some typos

This commit is contained in:
David Lima
2015-10-04 12:05:07 -03:00
parent 29ea66dbef
commit 09f8a34244

View File

@@ -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
```