From b453fa60c3f48638f3b942a3787c10148d6b6a47 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Mon, 28 Apr 2014 17:49:03 -0500 Subject: [PATCH] [#3807] Fixing period to semicolon thanks to @xabbuh --- contributing/code/standards.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/code/standards.rst b/contributing/code/standards.rst index 7082565cee9..bef7fc3af51 100644 --- a/contributing/code/standards.rst +++ b/contributing/code/standards.rst @@ -104,7 +104,7 @@ Structure * Declare public methods first, then protected ones and finally private ones. The exceptions to this rule are the class constructor and the ``setUp`` and ``tearDown`` methods of PHPUnit tests, which should always be the first methods - to increase readability. + to increase readability; * Use parentheses when instantiating classes regardless of the number of arguments the constructor has;