PHP Class with Class, Method and Property Attributes
<?phpdeclare(strict_types=1);#[TestAttribute1('testValue1')]classAbc{ #[TestAttribute2('testValue2')]public?string$test_property_1 =null;public?string$test_property_2 =null; #[TestAttribute3('testValue3')]publicfunctiontestMethod1(){ // rest of the codes}publicfunctiontestMethod2(){ // rest of the codes} // rest of the codes}