Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning
titleIncorrect
Code Block
languagephp
titlemy_class.php
linenumberstrue
<?php
// Class name starts with a lower case letter
class myClass {
    // Constructor should be named __construct()
    public function myClass() {
    }
}
?>
Tip
titlecorrectCorrect
Code Block
languagephp
titlemy_class.php
linenumberstrue
<?php 
class MyClass {
    public function __construct() {
    }
}
?>

...