You are here

public function TagTest::provideDataForConstuctor in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpdocumentor/reflection-docblock/tests/phpDocumentor/Reflection/DocBlock/TagTest.php \phpDocumentor\Reflection\DocBlock\TagTest::provideDataForConstuctor()

Data provider for testConstructorParesInputsIntoCorrectFields

Return value

array

File

vendor/phpdocumentor/reflection-docblock/tests/phpDocumentor/Reflection/DocBlock/TagTest.php, line 297

Class

TagTest
Test class for \phpDocumentor\Reflection\DocBlock\Tag\VarTag

Namespace

phpDocumentor\Reflection\DocBlock

Code

public function provideDataForConstuctor() {

  // $type, $content, $exDescription
  return array(
    array(
      'unknown',
      'some content',
      'some content',
    ),
    array(
      'unknown',
      '',
      '',
    ),
  );
}