I have a class with the following structure.
abstract class ABS {}
interface INT {}
class SomeClass extends ABS implements INT
{
//class implementation...
}
I'm working on my development environment with PHP 5.3 But when I uploaded to live (PHP 5.2.17) it just doesn't go to the end of declaration of the class SomeClass. Just stops there, no error, nothing. When i tested with some echo statements (in the begining of the class (before declaration) and in the end of the class(after declaration)) the echo statement that was in the end of the class declaration did not appear on the screen. When I remove either the extends or implements statement it reaches the end. Can you help me?