Created
January 22, 2016 16:06
-
-
Save enygma/8fc7edcbbc976d06ca36 to your computer and use it in GitHub Desktop.
implements problem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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