2017 © Pedro Peláez
 

library docblock-reflection

Simple, Fast PHP DocBlock Parser / Reflector

image

kamermans/docblock-reflection

Simple, Fast PHP DocBlock Parser / Reflector

  • Sunday, February 11, 2018
  • by kamermans
  • Repository
  • 2 Watchers
  • 8 Stars
  • 5,887 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 9 % Grown

The README.md

docblock-reflection

Build Status, (*1)

Simple, Fast PHP DocBlock Parser / Reflector, (*2)

This is a dead-simple DocBlock / doc comment / PHPDoc parser. It separates a block into tags and a comment and that's it. Nothing fancy here. If you want fancy, use the Doctrine Annotation bundle., (*3)

Installation

Use Composer to install by adding this to your composer.json:, (*4)

    "require": {
        "kamermans/docblock-reflection": "~1.0"
    }

Usage

This library is basically used for grabbing comments and tags, so here are some examples:, (*5)

Consider this class, (*6)

/**
 * A Foo class
 * 
 * @deprecated
 * @version      v1.1
 * @see          Foo::bar()
 * @see          google.com
 */
class Foo {
    /**
     * Does something that is really
     * cool and makes your life easy
     * 
     * @param string $name Your name
     * @return string
     */
    public function bar($name) {
        return "FooBar $name";
    }
}

We can explore it using the stock Reflection API, but it doesn't parse the DocBlocks, (*7)

$reflect = new RelflectionClass("Foo");
echo $reflect->getDocComment(); // spits out the raw block

To dig into the comment, use kamermans\Reflection\DocBlock. You can pass anything that implements the Reflector interface and has a getDocComment() method. That means ReflectionObject, ReflectionClass, ReflectionMethod, ReflectionFunction, etc., (*8)

use kamermans\Reflection\DocBlock;

$reflect = new ReflectionClass("Foo");
$doc = new DocBlock($reflect);

// Check if the @deprecated tag exists
$doc->tagExists("deprecated");

// Get the comment "A Foo class"
$doc->getComment();

echo $doc->version; // v1.1

// The same tag can be set multiple times
echo implode("|", $doc->see); // Foo::bar()|google.com

// It works on methods too
$doc = new DocBlock($reflect->getMethod("bar"));
echo "Foo returns a $doc->return\n"; // Foo returns a string

// Multiline comments work too
$doc->getComment();

The Versions

11/02 2018

dev-master

9999999-dev

Simple, Fast PHP DocBlock Parser / Reflector

  Sources   Download

MPL-2.0 MPL

The Requires

  • php >=5.3

 

The Development Requires

by Christan Sciberras

22/03 2016

v1.0.1

1.0.1.0

Simple, Fast PHP DocBlock Parser / Reflector

  Sources   Download

MPL

The Requires

  • php >=5.3

 

The Development Requires

by Christan Sciberras

23/10 2014

v1.0.0

1.0.0.0

Simple, Fast PHP DocBlock Parser / Reflector

  Sources   Download

MPL

The Requires

  • php >=5.3

 

The Development Requires