Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 1, 2024 via composer

phpdocumentor/reflection-common 2.2.0

Common reflection classes used by phpdocumentor to reflect the code structure
Package summary
Share
0
issues
1
license
1
MIT
Package created
5 Jun 2015
Version published
27 Jun 2020
Maintainers
1
Total deps
1
Direct deps
0
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
phpdocumentor/reflection-common@2.2.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
β“˜ This is a list of phpdocumentor/reflection-common 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does phpdocumentor/reflection-common do?

The phpDocumentor/Reflection-Common package is a set of common reflection classes utilized by phpDocumentor to reflect the structure of your code, providing a detailed insight into the elements and behaviors of your PHP codebase. It is an essential tool that serves as the backbone for generating documentation from your PHP source code, rigorously analyzing the intricacies of functions, classes, interfaces, and other components in the codes.

How do you use phpdocumentor/reflection-common?

Using the phpDocumentor/Reflection-Common package requires installing it through Composer. Have this installed in your project by running composer require phpdocumentor/reflection-common. After installing, you can utilize it in your PHP files. Here is a basic usage example:

<?php
require 'vendor/autoload.php';

use phpDocumentor\Reflection\Fqsen;

// Instantiate Fqsen Object
$fqsen = new Fqsen('\phpDocumentor\Reflection\Types\Context');

// Get Fqsen as string
$fqsenAsString = $fqsen->__toString();

The \phpDocumentor\Reflection\Fqsen class, in the above example, represents a Fully Qualified Structural Element Name, a.k.a, an FQSEN.

Where are the phpdocumentor/reflection-common docs?

For more comprehensive details about the phpDocumentor/Reflection-Common package, its classes, and methods, you can refer to the official documentation available on the phpDocumentor website. It is there you'll get concise material on getting the most out of this essential PHP tool. Unfortunately, the exact documentation for the Reflection-Common package isn't specified in the GitHub repository's README.