Skip to content

Latest commit

 

History

History
114 lines (82 loc) · 1.96 KB

phpdoc_to_return_type.rst

File metadata and controls

114 lines (82 loc) · 1.96 KB

Rule phpdoc_to_return_type

EXPERIMENTAL: Takes @return annotation of non-mixed types and adjusts accordingly the function signature. Requires PHP >= 7.0.

Warning

Using this rule is risky.

This rule is EXPERIMENTAL and [1] is not covered with backward compatibility promise. [2] @return annotation is mandatory for the fixer to make changes, signatures of methods without it (no docblock, inheritdocs) will not be fixed. [3] Manual actions are required if inherited signatures are not properly documented.

Configuration

scalar_types

Fix also scalar types; may have unexpected behaviour due to PHP bad type coercion system.

Allowed types: bool

Default value: true

Examples

Example #1

Default configuration.

--- Original
+++ New
 <?php

 /** @return \My\Bar */
-function my_foo()
+function my_foo(): \My\Bar
 {}

Example #2

Default configuration.

--- Original
+++ New
 <?php

 /** @return void */
-function my_foo()
+function my_foo(): void
 {}

Example #3

Default configuration.

--- Original
+++ New
 <?php

 /** @return object */
-function my_foo()
+function my_foo(): object
 {}

Example #4

With configuration: ['scalar_types' => false].

--- Original
+++ New
 <?php
 /** @return Foo */
-function foo() {}
+function foo(): Foo {}
 /** @return string */
 function bar() {}

Example #5

Default configuration.

--- Original
+++ New
 <?php
 final class Foo {
     /**
      * @return static
      */
-    public function create($prototype) {
+    public function create($prototype): static {
         return new static($prototype);
     }
 }