andresandoval/lithium

Php library for managing metadata in objects and functions annotations

v1.0.0 2017-12-07 15:39 UTC

This package is not auto-updated.

Last update: 2025-07-02 12:26:33 UTC


README

Library for managing metadata in Objects and/or Methods definitions

####Example

<?php
 /**
 * @MetaSample(
 *   @propertyOne hello
 *   @propertyTwo world
 *   @propertyThree()
 *   @propertyFour(@subP41=001, @subp42=002)
 *   @propertyFive(
 *      @subP51=001
 *      @subp62=002
 *   ),
 *   @propertySix six, @propertySeven=seven 
 * )
 */
 class Test{...}