rfc:annotations_v2
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rfc:annotations_v2 [2019/02/05 22:30] – created draft version brzuchal | rfc:annotations_v2 [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== PHP RFC: Annotations ====== | + | ====== PHP RFC: Annotations |
* Version: 0.1 | * Version: 0.1 | ||
* Date: 2019-02-05 | * Date: 2019-02-05 | ||
* Author: Michał Brzuchalski < | * Author: Michał Brzuchalski < | ||
- | * Status: | + | * Status: |
* First Published at: http:// | * First Published at: http:// | ||
Line 21: | Line 21: | ||
<code php> | <code php> | ||
- | @AnnotationName(" | + | [@AnnotationName(" |
+ | [SimpleAnnotation] | ||
+ | class Foo {} | ||
</ | </ | ||
Line 34: | Line 36: | ||
use ORM\Column; | use ORM\Column; | ||
- | @Entity | + | [@Entity] |
- | @Table(" | + | [@Table(" |
class Foo { | class Foo { | ||
- | @Id @Column(" | + | |
+ | [@Column(" | ||
private $id; | private $id; | ||
} | } | ||
Line 46: | Line 49: | ||
class FooController { | class FooController { | ||
- | @Route("/ | + | |
public function create(Request $request): Response | public function create(Request $request): Response | ||
{ | { | ||
Line 54: | Line 57: | ||
</ | </ | ||
- | ==== Built in annotations ==== | + | ==== Built-in annotations ==== |
- | === @Annotation === | + | First, there are several that inform compilation: |
+ | |||
+ | === [Compiled] === | ||
+ | Function scoped annotation indicating if a function should be JIT compiled. | ||
+ | |||
+ | === [SupressWarnings] === | ||
+ | Function or statement scoped annotation indicating if error supression should be applied. | ||
+ | |||
+ | ==== Meta-Annotations ==== | ||
+ | |||
+ | Next, meta-annotations are annotations that can be applied to other annotations. | ||
+ | |||
+ | For example, these meta-annotations are used for annotation configuration: | ||
+ | |||
+ | === [@Annotation] === | ||
Annotation classes have to contain a '' | Annotation classes have to contain a '' | ||
<code php> | <code php> | ||
- | @Annotation | + | [@Annotation] |
class MyAnnotation { | class MyAnnotation { | ||
// some code | // some code | ||
Line 66: | Line 83: | ||
</ | </ | ||
- | === @Target === | + | === [@Target] === |
'' | '' | ||
Then you could define one or more targets: | Then you could define one or more targets: | ||
- | * '' | + | |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | === @Repeatable === | + | === [@Repeatable] === |
'' | '' | ||
- | === @Inherited === | + | === [@Inherited] === |
'' | '' | ||
When such user-defined annotations are used on superclass, they are automatically inherited to subclasses. | When such user-defined annotations are used on superclass, they are automatically inherited to subclasses. | ||
<code php> | <code php> | ||
- | @Annotation | + | [@Annotation] |
class MyAnnotation {} | class MyAnnotation {} | ||
- | @Annotation | + | [@Annotation] |
- | @Inherited | + | [@Inherited] |
class MyInheritedAnnotation {} | class MyInheritedAnnotation {} | ||
- | @MyAnnotation | + | [@MyAnnotation] |
- | @MyInheritedAnnotation | + | [@MyInheritedAnnotation] |
class Foo {} | class Foo {} | ||
Line 101: | Line 118: | ||
$classAnnotations = $refl-> | $classAnnotations = $refl-> | ||
</ | </ | ||
- | |||
- | ===== Examples ===== | ||
==== Custom annotations ==== | ==== Custom annotations ==== | ||
- | Using annotations | ||
- | <code php> | + | Annotation type declarations are similar to normal class declarations. |
- | use Example\MyAnnotation; | + | Each property |
- | use Example\MyEmbededAnnotation; | + | Property types are restricted to primitives or another annotation type. |
- | + | ||
- | @MyAnnotation( | + | |
- | myProperty=" | + | |
- | myArrayProperty=[1, | + | |
- | | + | |
- | ) | + | |
- | class Foo { | + | |
- | @MyPropertyAnnotation | + | |
- | private $property; | + | |
- | + | ||
- | @MyMethodAnnotation(" | + | |
- | public function bar() {} | + | |
- | } | + | |
- | </ | + | |
- | Declaring custom annotations | + | Declaring custom annotations: |
<code php> | <code php> | ||
namespace Example; | namespace Example; | ||
- | @Annotation | + | [@Annotation] |
- | @Target(" | + | [@Target(" |
class MyAnnotation { | class MyAnnotation { | ||
- | @Required | + | |
public string $myProperty; | public string $myProperty; | ||
public array $myArrayProperty = []; | public array $myArrayProperty = []; | ||
Line 139: | Line 139: | ||
} | } | ||
- | @Annotation | + | [@Annotation] |
- | @Target([" | + | [@Target([" |
class MyEmbededAnnotation { | class MyEmbededAnnotation { | ||
} | } | ||
- | @Annotation | + | [@Annotation] |
- | @Target(" | + | [@Target(" |
class MyPropertyAnnotation { | class MyPropertyAnnotation { | ||
} | } | ||
Line 156: | Line 156: | ||
$this-> | $this-> | ||
} | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Using annotations | ||
+ | |||
+ | <code php> | ||
+ | use Example\MyAnnotation; | ||
+ | use Example\MyEmbededAnnotation; | ||
+ | |||
+ | [@MyAnnotation([ | ||
+ | " | ||
+ | " | ||
+ | )] | ||
+ | class Foo { | ||
+ | [@MyPropertyAnnotation] | ||
+ | private $property; | ||
+ | | ||
+ | [@MyMethodAnnotation(" | ||
+ | public function bar() {} | ||
} | } | ||
</ | </ |
rfc/annotations_v2.1549405841.txt.gz · Last modified: 2025/04/03 13:08 (external edit)