File tree Expand file tree Collapse file tree 7 files changed +22
-8
lines changed Expand file tree Collapse file tree 7 files changed +22
-8
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,10 @@ final class CSSListTest extends TestCase
15
15
{
16
16
/**
17
17
* @test
18
+ *
19
+ * @return void
18
20
*/
19
- public function implementsCSSElement (): void
21
+ public function implementsCSSElement ()
20
22
{
21
23
$ subject = new ConcreteCSSList ();
22
24
Original file line number Diff line number Diff line change 9
9
10
10
final class ConcreteCSSList extends CSSList
11
11
{
12
- public function isRootList (): bool
12
+ /**
13
+ * @return never
14
+ */
15
+ public function isRootList ()
13
16
{
14
17
throw new \BadMethodCallException ('Not implemented ' , 1740395831 );
15
18
}
16
19
17
- public function render (OutputFormat $ outputFormat ): string
20
+ /**
21
+ * @return never
22
+ */
23
+ public function render (OutputFormat $ outputFormat )
18
24
{
19
25
throw new \BadMethodCallException ('Not implemented ' , 1740395836 );
20
26
}
Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ final class RuleTest extends TestCase
18
18
{
19
19
/**
20
20
* @test
21
+ *
22
+ * @return void
21
23
*/
22
- public function implementsCSSElement (): void
24
+ public function implementsCSSElement ()
23
25
{
24
26
$ subject = new Rule ('beverage-container ' );
25
27
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ final class ConcreteRuleSet extends RuleSet
12
12
/**
13
13
* @return never
14
14
*/
15
- public function render (OutputFormat $ outputFormat ): string
15
+ public function render (OutputFormat $ outputFormat )
16
16
{
17
17
throw new \BadMethodCallException ('Nothing to see here :/ ' , 1744067015 );
18
18
}
Original file line number Diff line number Diff line change @@ -15,8 +15,10 @@ final class RuleSetTest extends TestCase
15
15
{
16
16
/**
17
17
* @test
18
+ *
19
+ * @return void
18
20
*/
19
- public function implementsCSSElement (): void
21
+ public function implementsCSSElement ()
20
22
{
21
23
$ subject = new ConcreteRuleSet ();
22
24
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ final class ConcreteValue extends Value
12
12
/**
13
13
* @return never
14
14
*/
15
- public function render (OutputFormat $ outputFormat ): string
15
+ public function render (OutputFormat $ outputFormat )
16
16
{
17
17
throw new \BadMethodCallException ('Nothing to see here :/ ' , 1744067951 );
18
18
}
Original file line number Diff line number Diff line change @@ -16,8 +16,10 @@ final class ValueTest extends TestCase
16
16
{
17
17
/**
18
18
* @test
19
+ *
20
+ * @return void
19
21
*/
20
- public function implementsCSSElement (): void
22
+ public function implementsCSSElement ()
21
23
{
22
24
$ subject = new ConcreteValue ();
23
25
You can’t perform that action at this time.
0 commit comments