Skip to content

Instantly share code, notes, and snippets.

@azcdev
Created December 13, 2013 23:45
Show Gist options
  • Save azcdev/7953617 to your computer and use it in GitHub Desktop.
Save azcdev/7953617 to your computer and use it in GitHub Desktop.
Clase Carro con Inyeccion de Dependencia
<?php
class Carro {
private $motor;
public function __construct(Motor $motor) {
$this->motor = $motor;
$this->motor->arranca();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment