class builder
1.0.0
الإدارة الديناميكية للفئات والسمات والواجهات في PHP.
اذا اعجبك هذا المشروع اهدينا .
$ composer require thenlabs/class-builder
تتطلب PHP >= 7.2
يوضح المثال التالي طريقة لإنشاء فئة PHP ديناميكيًا باستخدام ClassBuilder
الخاص بنا.
<?php
use ThenLabs ClassBuilder ClassBuilder ;
$ personClass = new ClassBuilder ( ' Person ' );
$ personClass -> setNamespace ( ' ThenLabsDemo ' );
$ personClass -> addProperty ( ' name ' )-> setAccess ( ' protected ' );
$ personClass -> addMethod ( ' __construct ' , function ( string $ name ) {
$ this -> name = $ name ;
});
$ personClass -> addMethod ( ' getName ' , function (): string {
return $ this -> name ;
});
$ personClass -> install ();
$ andy = new Person ( ' Andy ' );
$ andy -> getName () === ' Andy ' ; // true
$ andy instanceof ThenLabs Demo Person; // true
انسخ هذا المستودع وقم بتثبيت تبعيات Composer.
$ composer install
تمت كتابة جميع اختبارات هذا المشروع باستخدام إطار الاختبار الخاص بنا PyramidalTests والذي يعتمد على PHPUnit.
تشغيل الاختبارات:
$ composer test