Skip to content

Commit

Permalink
minor #32561 [Config][ReflectionClassResource] Use ternary instead of…
Browse files Browse the repository at this point in the history
… null coalescing operator (fancyweb)

This PR was merged into the 3.4 branch.

Discussion
----------

[Config][ReflectionClassResource] Use ternary instead of null coalescing operator

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

`??` cannot be on 3.4, tests are failing because of this.

Commits
-------

4db953f [Config][ReflectionClassResource] Use ternary instead of null coaelscing operator
  • Loading branch information
fabpot committed Jul 16, 2019
2 parents b75a8be + 4db953f commit e5bd6ff
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -140,7 +140,7 @@ private function generateSignature(\ReflectionClass $class)

foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_PROTECTED) as $p) {
yield $p->getDocComment().$p;
yield print_r($defaults[$p->name] ?? null, true);
yield print_r(isset($defaults[$p->name]) ? $defaults[$p->name] : null, true);
}
}

Expand Down

0 comments on commit e5bd6ff

Please sign in to comment.