Skip to content

Instantly share code, notes, and snippets.

@eriktorsner
Last active April 25, 2017 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eriktorsner/4d5fd3c8a6862088b76ba6b943d4655b to your computer and use it in GitHub Desktop.
Save eriktorsner/4d5fd3c8a6862088b76ba6b943d4655b to your computer and use it in GitHub Desktop.
helloTestable MockObjects.php
<?php
class MockLyric
{
public function __construct($lyric)
{
$this->lyric = $lyric;
}
public function getLyric()
{
return $this->lyric;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment