Coder Social home page Coder Social logo

reflection's Introduction

Brick\Reflection

A collection of low-level tools to extend PHP reflection capabilities.

Build Status Coverage Status Latest Stable Version Total Downloads License

Installation

This library is installable via Composer:

composer require brick/reflection

Requirements

This library requires PHP 7.1 or later. For PHP 5.6 and PHP 7.0 compatibility, use version 0.1.

Documentation

Here is a brief overview of the classes in this package.

ReflectionTools

This class is a collection of tools that build on top of PHP's reflection classes to provide additional functionality.

Just create an instance of ReflectionTools and you can use the following methods:

  • getClassMethods() returns reflections of all the non-static methods that make up one object, including private methods of parent classes.
  • getClassProperties() returns reflections of all the non-static properties that make up one object, including private properties of parent classes.
  • getClassHierarchy() returns the hierarchy of classes, starting from the first ancestor and ending with the class itself.
  • getReflectionFunction() returns a reflection object for any callable.
  • getFunctionParameterTypes() returns an associative array of the @param types documented on function parameters.
  • getParameterTypes() returns the @param types documented on a function parameter.
  • getPropertyTypes() returns the @var types documented on a property.
  • getPropertyClass() returns the fully qualified class name type documented for the given property, if any.
  • getFunctionName() returns a meaningful name for the given function, including the class name if it is a method.
  • exportFunction() exports a function's signature.
  • exportFunctionParameters() exports a function's parameters. Used by exportFunction().

ImportResolver

ImportResolver resolves class names to their fully qualified name, taking into account the current namespace and use statements of the PHP file they were used in.

This is particularly useful for parsing annotations such as @param ClassName $foo, where the FQCN of ClassName depends on the file it appears in, for example:

<?php

namespace App;

use Foo\Bar;
use Foo\Bar\Baz as Alias;

class Test {

}

You can create a resolver by passing any reflection object belonging to the PHP file as a context: a ReflectionClass, a ReflectionProperty, a ReflectionMethod or a ReflectionParameter:

use Brick\Reflection\ImportResolver;

$class = new ReflectionClass(App\Test::class);
$resolver = new ImportResolver($class);

echo $resolver->resolve('\Some\FQCN\Class'); // Some\FQCN\Class
echo $resolver->resolve('Something'); // App\Something
echo $resolver->resolve('Something\Else'); // App\Something\Else
echo $resolver->resolve('Bar'); // Foo\Bar
echo $resolver->resolve('Bar\tender'); // Foo\Bar\tender
echo $resolver->resolve('Alias'); // Foo\Bar\Baz
echo $resolver->resolve('Alias\ooka'); // Foo\Bar\Baz\ooka

reflection's People

Contributors

benmorel avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.