Completed
Push — master ( f5f8be...9684f5 )
by Sander
24:06 queued 10:40
created

Helper/Transformer/PreviewTransformerInterface.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\MediaBundle\Helper\Transformer;
4
5
use Liip\ImagineBundle\Imagine\Data\Transformer\TransformerInterface;
6
7
interface PreviewTransformerInterface extends TransformerInterface
0 ignored issues
show
Deprecated Code introduced by
The interface Liip\ImagineBundle\Imagi...er\TransformerInterface has been deprecated with message: Will be removed in 2.0

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
8
{
9
    /**
10
     * Return the path of the preview file.
11
     *
12
     * @param string $absolutePath
13
     *
14
     * @return string
15
     */
16
    public function getPreviewFilename($absolutePath);
17
}
18