This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Finder/SplFileInfo.php

58 lines
1.3 KiB
PHP
Raw Normal View History

2011-02-15 23:18:23 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
2011-02-15 23:18:23 +00:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Finder;
/**
* Extends \SplFileInfo to support relative paths
*
* @author Fabien Potencier <fabien@symfony.com>
2011-02-15 23:18:23 +00:00
*/
class SplFileInfo extends \SplFileInfo
{
private $relativePath;
private $relativePathname;
2011-02-15 23:18:23 +00:00
/**
* Constructor
*
2011-04-23 16:05:44 +01:00
* @param string $file The file name
* @param string $relativePath The relative path
* @param string $relativePathname The relative path name
2011-02-15 23:18:23 +00:00
*/
public function __construct($file, $relativePath, $relativePathname)
{
parent::__construct($file);
$this->relativePath = $relativePath;
$this->relativePathname = $relativePathname;
}
/**
* Returns the relative path
*
* @return string the relative path
*/
public function getRelativePath()
{
return $this->relativePath;
}
/**
* Returns the relative path name
*
* @return string the relative path name
*/
public function getRelativePathname()
{
return $this->relativePathname;
}
}