for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File containing the ContentIdCriterion parser class.
*
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
* @version //autogentag//
*/
namespace eZ\Publish\Core\REST\Server\Input\Parser\Criterion;
use eZ\Publish\Core\REST\Common\Input\BaseParser;
use eZ\Publish\Core\REST\Common\Input\ParsingDispatcher;
* Parser for ViewInput.
class UserMetadata extends BaseParser
{
* Parses input structure to a Criterion object.
* @param array $data
* @param \eZ\Publish\Core\REST\Common\Input\ParsingDispatcher $parsingDispatcher
* @throws \eZ\Publish\Core\REST\Common\Exceptions\Parser
* @return \eZ\Publish\API\Repository\Values\Content\Query\Criterion\UserMetadata
public function parse(array $data, ParsingDispatcher $parsingDispatcher)
throw new \Exception('@todo implement');
}