PHP code example of orisai / source-map
1. Go to this page and download the library: Download orisai/source-map library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
orisai / source-map example snippets
use Orisai\SourceMap\AnnotationSource;
use Orisai\SourceMap\ClassSource;
use ReflectionClass;
// Generate (and self-validate)
$source = new AnnotationSource(new ClassSource(new ReflectionClass(AnnotatedClass::class)));
// Print source
echo $source->toString(); // 'AnnotatedClass annotation'
// Serialize and un-serialize
$serialized = serialize($source);
$source = unserialize($serialized);
assert($source instanceof AnnotationSource);
// Ensure source is still valid after un-serialization
$source->isValid(); // bool
// Check last time source has changed
$source->getLastChange(); // DateTimeImmutable