Browse Source

Avoid double spaces before "and" in phpdoc of virtual properties

tags/2.0.41
Robert Korulczyk 4 years ago committed by GitHub
parent
commit
dcd86f9234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build/controllers/PhpDocController.php

2
build/controllers/PhpDocController.php

@ -735,7 +735,7 @@ class PhpDocController extends Controller
if (isset($prop['get'], $prop['set'])) {
if ($prop['get']['type'] != $prop['set']['type']) {
$note = ' Note that the type of this property differs in getter and setter.'
. ' See [[get' . ucfirst($propName) . '()]] '
. ' See [[get' . ucfirst($propName) . '()]]'
. ' and [[set' . ucfirst($propName) . '()]] for details.';
}
} elseif (isset($prop['get'])) {

Loading…
Cancel
Save