Method names should be declared in camelCase. You should rename this class to comply with PSR-1.
*
* @param boolean $with_namespaces with namespaces
*
* @return string Name of class with namespaces stripped
*/
public static function get_class_name($with_namespaces = true)
{
$class_name = get_called_class();
if($with_namespaces) return $class_name;
$class = explode('\\', $class_name);
in src/Purekid/Mongodm/Model.php, line 658
Posted from SensioLabsInsight