So, this is my trait:
trait Cacheable
{
    protected static $isCacheEnabled = false;
    protected static $cacheExpirationTime = null;
    public static function isCacheEnabled()
    {
        return static::$isCacheEnabled && Cache::isEnabled();
    }
    public static function getCacheExpirationTime()
    {
        return static::$cacheExpirationTime;
    }
}
This is the base class:
abstract class BaseClass extends SomeOtherBaseClass
{
    use Cacheable;
    ...
}
These are my 2 final classes:
class Class1 extends BaseClass
{
    ...
}
class Class2 extends BaseClass
{
    protected static $isCacheEnabled = true;
    protected static $cacheExpirationTime = 3600;
    ...
}
Here is the part of the code which executes these classes:
function baseClassRunner($baseClassName)
{
    ...
    $output = null;
    if ($baseClassName::isCacheEnabled()) {
        $output = Cache::getInstance()->get('the_key');
    }
    if ($output === null) {
        $baseClass = new $baseClassName();
        $output = $baseClass->getOutput();
        if ($baseClassName::isCacheEnabled()) {
            Cache::getInstance()->set('the_key', $output);
        }
    }
    ...
}
This code doesn't work because PHP complains about defining same properties in Class2 as in Cacheable. I can't set them in their constructors because I want to read them even before running the constructor. I'm open for ideas, any help would be appreciated. :)
EDIT:
Well, I use this Cacheable trait on several places so i kind of got mixed up. :) This works fine like this. But I have another class which directly uses the Cacheable trait and when I try to do this on that class, I get the metioned error. So... Just assume that the BaseClass isn't abstract and I'm trying to set these cache properties on it. The question remains the same.