????

Your IP : 3.145.151.222


Current Path : /home/ncom/public_html/wp-content/plugins/smart-slider-3/Nextend/Framework/Pattern/
Upload File :
Current File : /home/ncom/public_html/wp-content/plugins/smart-slider-3/Nextend/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());
    }
}