This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// interface | |
interface Color { | |
function color(); // define text color | |
function bg_color(); // define background color | |
} | |
// colors | |
class Yellow implements Color { | |
public function color() { | |
return '#000'; // black text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// interfaccia | |
interface Colore { | |
function color(); // definisce il colore del testo | |
function bg_color(); // definisce il colore di sfondo | |
} | |
// colori | |
class Giallo implements Colore { | |
public function color() { |