Your IP : 216.73.216.85


Current Path : /home/smartconb/www/armencom33/libraries/smartslider3/src/Framework/Pattern/
Upload File :
Current File : /home/smartconb/www/armencom33/libraries/smartslider3/src/Framework/Pattern/GetPathTrait.php

<?php

namespace Nextend\Framework\Pattern;

use ReflectionClass;

trait GetPathTrait {

    public static function getPath() {

        $reflection = new ReflectionClass(static::class);

        return dirname($reflection->getFileName());
    }
}