Skip to content

Instantly share code, notes, and snippets.

@clemherreman
Created June 14, 2011 14:57
Show Gist options
  • Save clemherreman/1025057 to your computer and use it in GitHub Desktop.
Save clemherreman/1025057 to your computer and use it in GitHub Desktop.
example of DI
<?php
class webserviceMagento {
public construct($dependency = null)
{
if (is_null($dependency))
{
// Instanciate your dependencies by yourself!
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment