You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP version errors
like on page 51
void not as of PHP 8 but it is as of PHP 7.1
page 131
if indentation
page 141
the return statement is in one line
must be in the next line
p. 361
listing 10.41
Why "DIR" is in bold?
p. 372
3rd paragraph has a misprint. and the next 3 occurrences, or please replace it inside of a class to lowercase word.
Now, it is like this:
dointerpret()
instead of
doInterpret() - it must be camalCase as it is inside of class
p. 384 | listing 11.22
there is no space after a keyword "class"
it looks like classLogin
p. 408 | listing 11.50
Fatal Errors
method get must return string; null is returned!
setError must not have a return type set to string!
p. 438
__construct()
parentheses is not closed
461,466 (the new line is recommended 1. before private 2. before final
p. 477
listing 12.39
return must be on the new line
p. 501 it would be more efficient if you would use $this->total instead of repeating count($raw)
p. 504 Show to Nikita
I would have had to have been careful
p. 664 1st paragraph (not in the note)
PHPUnit[remove space here]
p. 666 at the very beginning of a class 2 properties in one row. add a new line
p.674 I do not see the reason why we have this(greeting application registry instance):
$reg = ApplicationRegistry::instance()
as we do not use it anywhere in the runComand method
p.675 ob_start()
is it on purpose placed on the same line or did it happen by accident
notice:
class Conf is defined in chapter 4
but then you use it in chapter 12, I was confused where does it come from. before using old classes, please add a reference either in the very beginning of a section or by making a footnote in the footer.
The text was updated successfully, but these errors were encountered:
PHP version errors
like on page 51
void not as of PHP 8 but it is as of PHP 7.1
page 131
if indentation
page 141
the return statement is in one line
must be in the next line
p. 361
listing 10.41
Why "DIR" is in bold?
p. 372
3rd paragraph has a misprint. and the next 3 occurrences, or please replace it inside of a class to lowercase word.
Now, it is like this:
dointerpret()
instead of
doInterpret() - it must be camalCase as it is inside of class
p. 384 | listing 11.22
there is no space after a keyword "class"
it looks like classLogin
p. 408 | listing 11.50
Fatal Errors
method get must return string; null is returned!
setError must not have a return type set to string!
p. 438
__construct()
parentheses is not closed
461,466 (the new line is recommended 1. before private 2. before final
p. 477
listing 12.39
return must be on the new line
p. 501 it would be more efficient if you would use $this->total instead of repeating count($raw)
p. 504 Show to Nikita
I would have had to have been careful
p. 664 1st paragraph (not in the note)
PHPUnit[remove space here]
p. 666 at the very beginning of a class 2 properties in one row. add a new line
p.674 I do not see the reason why we have this(greeting application registry instance):
$reg = ApplicationRegistry::instance()
as we do not use it anywhere in the runComand method
p.675 ob_start()
is it on purpose placed on the same line or did it happen by accident
notice:
class Conf is defined in chapter 4
but then you use it in chapter 12, I was confused where does it come from. before using old classes, please add a reference either in the very beginning of a section or by making a footnote in the footer.
The text was updated successfully, but these errors were encountered: