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

78 lines
1.8 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;
/**
2014-12-21 17:00:50 +00:00
* Extends \SplFileInfo to support relative paths.
2011-02-15 23:18:23 +00:00
*
* @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
/**
2014-12-21 17:00:50 +00:00
* Constructor.
2011-02-15 23:18:23 +00:00
*
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;
}
/**
2014-12-21 17:00:50 +00:00
* Returns the relative path.
2011-02-15 23:18:23 +00:00
*
* @return string the relative path
*/
public function getRelativePath()
{
return $this->relativePath;
}
/**
2014-12-21 17:00:50 +00:00
* Returns the relative path name.
2011-02-15 23:18:23 +00:00
*
* @return string the relative path name
*/
public function getRelativePathname()
{
return $this->relativePathname;
}
/**
2014-12-21 17:00:50 +00:00
* Returns the contents of the file.
*
* @return string the contents of the file
*
* @throws \RuntimeException
*/
public function getContents()
{
$level = error_reporting(0);
$content = file_get_contents($this->getPathname());
error_reporting($level);
if (false === $content) {
$error = error_get_last();
throw new \RuntimeException($error['message']);
}
2012-07-09 16:06:57 +01:00
return $content;
}
}