Last active
December 31, 2015 07:19
-
-
Save azcdev/7953656 to your computer and use it in GitHub Desktop.
Ejemplo de inyeccion de dependencias en PHP
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 | |
class Motor { | |
public function __construct(){} | |
public function arranca() { | |
return "run run run run..."; | |
} | |
} | |
class MotorDiesel extends Motor { | |
public function __construct() {} | |
} | |
class MotorBiodiesel extends Motor { | |
public function __construct() {} | |
} | |
class Carro { | |
private $motor; | |
public function __construct(Motor $motor) { | |
$this->motor = $motor; | |
$this->motor->arranca(); | |
} | |
} | |
$motorDiesel = new MotorDiesel(); | |
$motorBiodiesel = new MotorBiodiesel(); | |
$carroDiesel = new Carro($motorDiesel); | |
$carroHipster = new Carro($motorBiodiesel); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment