valueSchema() public method

Returns info on valid $limitationValues.
public valueSchema ( ) : mixed[] | integer
return mixed[] | integer In case of array, a hash with key as valid limitations value and value as human readable name of that option, in case of int on of VALUE_SCHEMA_ constants.
 /**
  * @depends testConstruct
  * @expectedException \eZ\Publish\API\Repository\Exceptions\NotImplementedException
  *
  * @param \eZ\Publish\Core\Limitation\ContentTypeLimitationType $limitationType
  */
 public function testValueSchema(ContentTypeLimitationType $limitationType)
 {
     self::assertEquals(array(), $limitationType->valueSchema());
 }