File tree 3 files changed +24
-13
lines changed
3 files changed +24
-13
lines changed Original file line number Diff line number Diff line change 12
12
fail-fast : false
13
13
matrix :
14
14
include :
15
- - php : " 8.1"
16
- - php : " 8.2"
17
- - php : " 8.3"
18
15
- php : " 8.4"
19
16
PHP_CS_FIXER_IGNORE_ENV : 1
20
17
Original file line number Diff line number Diff line change 2
2
"name" : " friendsofphp/reproduce-playground" ,
3
3
"require" : {
4
4
"php" : " ^8.1" ,
5
- "friendsofphp/php-cs-fixer" : " 3.72 "
5
+ "friendsofphp/php-cs-fixer" : " 3.73.0 "
6
6
},
7
7
"autoload" : {
8
8
"psr-4" : {
Original file line number Diff line number Diff line change 2
2
3
3
namespace PhpCsFixer \ReproducePlayground ;
4
4
5
+ use App \Entity \Processus \Champ \Champ ;
6
+ use App \Entity \Processus \Processus ;
7
+ use Symfony \Component \Validator \Constraints \Length ;
8
+ use Symfony \Component \Validator \Constraints \NotBlank ;
5
9
6
- /**
7
- * @internal
8
- */
9
- class Example
10
+ class InformationsEtapeDto
10
11
{
11
-
12
-
13
-
14
- function foo () {}
15
- }
12
+ public function __construct (
13
+ /** Nécessaire pour le formulaire */
14
+ public Processus $ processus ,
15
+ #[NotBlank]
16
+ #[Length(max: 100 )]
17
+ public string $ libelle {
18
+ set(?string $ value ) {
19
+ $ this ->libelle = $ value ?? "" ;
20
+ }
21
+ },
22
+ /**
23
+ * @var iterable<Champ<mixed>>
24
+ */
25
+ public iterable $ champsAffiches = [],
26
+ public bool $ archivable = false ,
27
+ public bool $ commentable = false ,
28
+ ) {}
29
+ }
You can’t perform that action at this time.
0 commit comments