PHP Classes

File: vendor/phpdocumentor/reflection-docblock/examples/03-reconstituting-a-docblock.php

Recommend this page to a friend!
  Classes of Renato Lucena   PHP Pokemon Script   vendor/phpdocumentor/reflection-docblock/examples/03-reconstituting-a-docblock.php   Download  
File: vendor/phpdocumentor/reflection-docblock/examples/03-reconstituting-a-docblock.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 744 bytes
 

Contents

Class file image Download
<?php

require_once(__DIR__ . '/../vendor/autoload.php');

use
phpDocumentor\Reflection\DocBlock\Serializer;
use
phpDocumentor\Reflection\DocBlockFactory;

$docComment = <<<DOCCOMMENT
/**
 * This is an example of a summary.
 *
 * And here is an example of the description
 * of a DocBlock that can span multiple lines.
 *
 * @see \phpDocumentor\Reflection\DocBlock\StandardTagFactory
 */
DOCCOMMENT;

$factory = DocBlockFactory::createInstance();
$docblock = $factory->create($docComment);

// Create the serializer that will reconstitute the DocBlock back to its original form.
$serializer = new Serializer();

// Reconstitution is performed by the `getDocComment()` method.
$reconstitutedDocComment = $serializer->getDocComment($docblock);