[HttpFoundation] remove getExtension method

This commit is contained in:
Diego Saint Esteben 2015-04-15 20:05:42 -03:00 committed by Fabien Potencier
parent 995448c6ef
commit 55ecf3bc46
2 changed files with 0 additions and 20 deletions

View File

@ -87,20 +87,6 @@ class File extends \SplFileInfo
return $guesser->guess($this->getPathname());
}
/**
* Returns the extension of the file.
*
* \SplFileInfo::getExtension() is not available before PHP 5.3.6
*
* @return string The extension
*
* @api
*/
public function getExtension()
{
return pathinfo($this->getBasename(), PATHINFO_EXTENSION);
}
/**
* Moves the file to a new location.
*

View File

@ -148,12 +148,6 @@ class FileTest extends \PHPUnit_Framework_TestCase
@rmdir($targetDir);
}
public function testGetExtension()
{
$file = new File(__DIR__.'/Fixtures/test.gif');
$this->assertEquals('gif', $file->getExtension());
}
protected function createMockGuesser($path, $mimeType)
{
$guesser = $this->getMock('Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesserInterface');