public function GetSetMethodNormalizerTest::attributeProvider

File

drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php, line 70

Class

GetSetMethodNormalizerTest

Namespace

Symfony\Component\Serializer\Tests\Normalizer

Code

public function attributeProvider() {
  return array(
    array(
      'attribute_test',
      array(
        'attribute_test',
      ),
      'AttributeTest',
    ),
    array(
      'attribute_test',
      array(
        'any',
      ),
      'attribute_test',
    ),
    array(
      'attribute',
      array(
        'attribute',
      ),
      'Attribute',
    ),
    array(
      'attribute',
      array(),
      'attribute',
    ),
  );
}