Equip\Directory::withoutPrefix PHP Method

withoutPrefix() public method

Remove the directory path prefix.
public withoutPrefix ( ) : static
return static
    public function withoutPrefix()
    {
        $copy = clone $this;
        $copy->prefix = '';
        return $copy;
    }