Exemplo n.º 1
0
<?php

include 'vendor/autoload.php';
use Vox\Exercicio\User;
use Vox\Exercicio\Product;
$jose = new User('José');
$maria = new User('Maria');
$joao = new User('João');
$televisao = new Product('Televisão');
$televisao->setPrice(100);
$televisao->setPrice(20);
$televisao->attach($jose);
$televisao->attach($maria);
$televisao->attach($joao);
$televisao->notify();