1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-01 22:22:53 +05:30
accounts/api/modules/session/exceptions/SessionServerException.php

20 lines
463 B
PHP
Raw Normal View History

<?php
namespace api\modules\session\exceptions;
use ReflectionClass;
use yii\web\HttpException;
class SessionServerException extends HttpException {
/**
* Рефлексия быстрее, как ни странно:
* @url https://coderwall.com/p/cpxxxw/php-get-class-name-without-namespace#comment_19313
*
* @return string
*/
public function getName() {
return (new ReflectionClass($this))->getShortName();
}
}