PHP code example of tbn / getter-trait-bundle
1. Go to this page and download the library: Download tbn/getter-trait-bundle 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/ */
tbn / getter-trait-bundle example snippets
return [
...
tbn\GetterTraitBundle\GetterTraitBundle::class => ['dev' => true,],
];
use tbn\GetterTraitBundle\Attributes\GetSetTrait; // add this line
#[GetSetTrait] // add this line
class MyClass
{
private String $name;
}
#[GetSetTrait]
class MyClass
{
use MyClassTrait; // add this line
private String $name;
}