File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 357
357
<code >Medium</code >
358
358
</UnusedClass >
359
359
</file >
360
+ <file src =" src/Framework/Attributes/PostCondition.php" >
361
+ <UnusedClass occurrences =" 1" >
362
+ <code >PostCondition</code >
363
+ </UnusedClass >
364
+ </file >
365
+ <file src =" src/Framework/Attributes/PreCondition.php" >
366
+ <UnusedClass occurrences =" 1" >
367
+ <code >PreCondition</code >
368
+ </UnusedClass >
369
+ </file >
360
370
<file src =" src/Framework/Attributes/PreserveGlobalState.php" >
361
371
<UnusedClass occurrences =" 1" >
362
372
<code >PreserveGlobalState</code >
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+ /*
3
+ * This file is part of PHPUnit.
4
+ *
5
+ * (c) Sebastian Bergmann <[email protected] >
6
+ *
7
+ * For the full copyright and license information, please view the LICENSE
8
+ * file that was distributed with this source code.
9
+ */
10
+ namespace PHPUnit \Framework \Attributes ;
11
+
12
+ use Attribute ;
13
+
14
+ #[Attribute(Attribute::TARGET_METHOD )]
15
+ final class PostCondition
16
+ {
17
+ }
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+ /*
3
+ * This file is part of PHPUnit.
4
+ *
5
+ * (c) Sebastian Bergmann <[email protected] >
6
+ *
7
+ * For the full copyright and license information, please view the LICENSE
8
+ * file that was distributed with this source code.
9
+ */
10
+ namespace PHPUnit \Framework \Attributes ;
11
+
12
+ use Attribute ;
13
+
14
+ #[Attribute(Attribute::TARGET_METHOD )]
15
+ final class PreCondition
16
+ {
17
+ }
You can’t perform that action at this time.
0 commit comments