Skip to content

Instantly share code, notes, and snippets.

@enygma
Created January 22, 2016 16:06
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 enygma/8fc7edcbbc976d06ca36 to your computer and use it in GitHub Desktop.
Save enygma/8fc7edcbbc976d06ca36 to your computer and use it in GitHub Desktop.
implements problem
<?php
$set = new StrategySet();
class StrategySet implements Countable
{
public function count()
{
return 0;
}
}
// Results in "Fatal error: Class 'StrategySet' not found in..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment