PartKeepr\UploadedFileBundle\Entity\UploadedFile::getExtension PHP Метод

getExtension() публичный Метод

Returns the extension for the file.
public getExtension ( ) : string
Результат string The extension
    public function getExtension()
    {
        if ($this->extension == '') {
            /* @noinspection PhpDeprecationInspection */
            return $this->getLegacyExtension();
        }
        return $this->extension;
    }