]> git.mxchange.org Git - friendica-addons.git/blob
fd4082b04cc354a1f0d37c513ba4713e961b901d
[friendica-addons.git] /
1 <?php
2
3 /*
4  * This file is part of the Fxp Composer Asset Plugin package.
5  *
6  * (c) François Pluchino <francois.pluchino@gmail.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Fxp\Composer\AssetPlugin\Tests\Fixtures\Converter;
13
14 use Fxp\Composer\AssetPlugin\Converter\AbstractPackageConverter;
15
16 /**
17  * Fixture for invalid package converter tests.
18  *
19  * @author François Pluchino <francois.pluchino@gmail.com>
20  */
21 class InvalidPackageConverter extends AbstractPackageConverter
22 {
23     /**
24      * {@inheritdoc}
25      */
26     protected function getMapKeys()
27     {
28         return array_merge(parent::getMapKeys(), array(
29             'name' => array(null, function ($value) {
30                 return $value;
31             }),
32         ));
33     }
34 }