class Model_Base {
public static function find() {
return get_class();
}
}
class Product extends Model_Base { }
echo Product::find();
* This source code was highlighted with Source Code Highlighter .
Source: https://habr.com/ru/post/44176/
All Articles