Skip to content

Instantly share code, notes, and snippets.

@Ikke
Created October 9, 2012 13:01
Show Gist options
  • Save Ikke/3858676 to your computer and use it in GitHub Desktop.
Save Ikke/3858676 to your computer and use it in GitHub Desktop.
<?php
class BusinessLogic
{
private $repo;
public function __construct(User_Repository $repo)
{
$this->repo = $repol
}
public function doSomething()
{
return $this->repo->getData();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment