Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Serializer\Mapping\Loader; Chris@0: Chris@0: use Symfony\Component\Serializer\Mapping\ClassMetadataInterface; Chris@0: Chris@0: /** Chris@0: * Loads {@link ClassMetadataInterface}. Chris@0: * Chris@0: * @author Kévin Dunglas Chris@0: */ Chris@0: interface LoaderInterface Chris@0: { Chris@0: /** Chris@0: * @return bool Chris@0: */ Chris@0: public function loadClassMetadata(ClassMetadataInterface $classMetadata); Chris@0: }