芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/imagine/imagine/src/Image/Metadata/DefaultMetadataReader.php
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Imagine\Image\Metadata; /** * A metadata reader that actually doesn't try to extract metadata. */ class DefaultMetadataReader extends AbstractMetadataReader { /** * {@inheritdoc} * * @see \Imagine\Image\Metadata\AbstractMetadataReader::extractFromFile() */ protected function extractFromFile($file) { return array(); } /** * {@inheritdoc} * * @see \Imagine\Image\Metadata\AbstractMetadataReader::extractFromData() */ protected function extractFromData($data) { return array(); } /** * {@inheritdoc} * * @see \Imagine\Image\Metadata\AbstractMetadataReader::extractFromStream() */ protected function extractFromStream($resource) { return array(); } }