From f4d122ae0725cd7ac47b895fdbeb7577b83c8cda Mon Sep 17 00:00:00 2001 From: Sullivan SENECHAL Date: Tue, 7 Nov 2017 18:08:44 +0100 Subject: [PATCH] Add special Abstract prefix not usage for PHPUnit test cases --- contributing/code/standards.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/contributing/code/standards.rst b/contributing/code/standards.rst index 9cc1c9faed1..64b1b82f543 100644 --- a/contributing/code/standards.rst +++ b/contributing/code/standards.rst @@ -190,9 +190,10 @@ Naming Conventions * Use namespaces for all classes; -* Prefix abstract classes with ``Abstract``. Please note some early Symfony classes - do not follow this convention and have not been renamed for backward compatibility - reasons. However all new abstract classes must follow this naming convention; +* Prefix all abstract classes with ``Abstract`` except PHPUnit ``*TestCase``. + Please note some early Symfony classes do not follow this convention and + have not been renamed for backward compatibility reasons. However all new + abstract classes must follow this naming convention; * Suffix interfaces with ``Interface``;