lombok style code generator for php
0.1
2015-08-07 19:14 UTC
Requires
- andrewsville/php-token-reflection: 1.*
- doctrine/annotations: ^1.2
- nikic/php-parser: 1.*
- symfony/console: ~2.3
- symfony/finder: ~2.1
Requires (Dev)
- behat/behat: 3.*
- phpspec/phpspec: ^2.2
- phpunit/phpunit: ^4.7
- satooshi/php-coveralls: dev-master
This package is not auto-updated.
Last update: 2025-03-21 23:55:47 UTC
README
install
$ composer require ytake/lom --dev
usage
generate command
$ vendor/bin/lom generate [scan target dir]
feature
##@Data Annotation
use Ytake\Lom\Meta\Data; /** * Class DataAnnotation * @Data */ class DataAnnotation { /** * @var string $message */ protected $message; /** * @var string $testing */ protected $testing; }
after
use Ytake\Lom\Meta\Data; /** * Class DataAnnotation * @Data */ class DataAnnotation { /** * @var string $message */ protected $message; public function getMessage() { return $this->message; } public function setMessage($message) { $this->message = $message; } }
##@NoArgsConstructor Annotation
use Ytake\Lom\Meta\NoArgsConstructor; /** * Class DataAnnotation * @NoArgsConstructor */ class DataAnnotation { public function __construct($message) { $this->message = $message; } }
after
use Ytake\Lom\Meta\NoArgsConstructor; /** * Class DataAnnotation * @NoArgsConstructor */ class DataAnnotation { }
##@AllArgsConstructor Annotation
use Ytake\Lom\Meta\AllArgsConstructor; /** * Class DataAnnotation * @AllArgsConstructor */ class DataAnnotation { protected $arg1; protected $arg2; }
after
use Ytake\Lom\Meta\AllArgsConstructor; /** * Class DataAnnotation * @AllArgsConstructor */ class DataAnnotation { protected $arg1; protected $arg2; public function __construct($arg1, $arg2) { $this->arg1 = $arg1; $this->arg2 = $arg2; } }
##@Getter/@Setter Annotation
##@Value Annotation