PHP-FIG Home Blog PSRs Personnel Bylaws FAQs Get Involved PSR-2: Coding Style Guide

Similar documents
Rule 1-3: Use white space to break a function into paragraphs. Rule 1-5: Avoid very long statements. Use multiple shorter statements instead.

Guidelines Quick Reference

Chapter 2 Author Notes

CuteFlow-V4 Documentation

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments.

Lexical Considerations

Lexical Considerations

EE 382 Style Guide. March 2, 2018

1 Lexical Considerations

IT 374 C# and Applications/ IT695 C# Data Structures

Introduction to C Programming

2.8. Decision Making: Equality and Relational Operators

Introduction to C# Applications Pearson Education, Inc. All rights reserved.

What does this program print?

C Coding Style Guide Version 0.4

QueueBlock, ReversalADT, LinkedList,CustomerAccount, not MaintainCustomerData

COMP519 Web Programming Lecture 27: PHP (Part 3) Handouts

GAWK Language Reference Manual

c) Comments do not cause any machine language object code to be generated. d) Lengthy comments can cause poor execution-time performance.

Introduction to C# Applications

Appendix G C/C++ Notes. C/C++ Coding Style Guidelines Ray Mitchell 475

CSE 142/143 Unofficial Style Guide

PHP Personal Home Page PHP: Hypertext Preprocessor (Lecture 35-37)

Chapter 2: Functions and Control Structures

YOLOP Language Reference Manual

ICT PHP Coding Standards

4. Structure of a C++ program

11 Coding Standards CERTIFICATION OBJECTIVES. Use Sun Java Coding Standards

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

Tokens, Expressions and Control Structures

CSCI 2101 Java Style Guide

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

Assignment Marking Criteria

Typescript on LLVM Language Reference Manual

INTRODUCTION 1 AND REVIEW

IT Web and Software Developer Software Development Standards

COMP284 Scripting Languages Lecture 11: PHP (Part 3) Handouts

Coding Guidelines. Introduction. General Points. Avoid redundant initialization/assignment

NOTICE OF CONFIDENTIALITY AND NONDISCLOSURE

Full file at

Sprite an animation manipulation language Language Reference Manual

Full file at C How to Program, 6/e Multiple Choice Test Bank

Makefiles Makefiles should begin with a comment section of the following form and with the following information filled in:

Index. Index. More information. block statements 66 y 107 Boolean 107 break 55, 68 built-in types 107

CSE 11 Style Guidelines

Web Scripting using PHP

Text. Text Actions. String Contains

Flow Control. CSC215 Lecture

CS 251 Intermediate Programming Coding Standards

VARIABLES. 1. STRINGS Data with letters and/or characters 2. INTEGERS Numbers without decimals 3. FLOATING POINT NUMBERS Numbers with decimals

VENTURE. Section 1. Lexical Elements. 1.1 Identifiers. 1.2 Keywords. 1.3 Literals

Log4Delphi Coding Standards

CMAT Language - Language Reference Manual COMS 4115

Formatting & Style Examples

Python I. Some material adapted from Upenn cmpe391 slides and other sources

Decaf Language Reference Manual

BIT Java Programming. Sem 1 Session 2011/12. Chapter 2 JAVA. basic

CS 351 Design of Large Programs Coding Standards

x = 3 * y + 1; // x becomes 3 * y + 1 a = b = 0; // multiple assignment: a and b both get the value 0

PHP: The Basics CISC 282. October 18, Approach Thus Far

Lecture 2 Tao Wang 1

Chapter 2 Basic Elements of C++

C Coding Standards. Alan Bridger UK Astronomy Technology Centre Mick Brooks, Jim Pisano National Radio Astronomy Observatory

Language Basics. /* The NUMBER GAME - User tries to guess a number between 1 and 10 */ /* Generate a random number between 1 and 10 */

Introduction to Python

JavaScript Functions, Objects and Array

Perl Basics. Structure, Style, and Documentation

IPCoreL. Phillip Duane Douglas, Jr. 11/3/2010

Deltek Maconomy 2.3 GA. M-Script Programming

Fundamentals of Programming Session 24

Title:[ Variables Comparison Operators If Else Statements ]

Course Coding Standards

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 3

Princeton University COS 333: Advanced Programming Techniques A Subset of PHP

CHAPTER 1.2 INTRODUCTION TO C++ PROGRAMMING. Dr. Shady Yehia Elmashad

Introduction to C++ General Rules, Conventions and Styles CS 16: Solving Problems with Computers I Lecture #2

PHP by Pearson Education, Inc. All Rights Reserved.

Web Scripting using PHP

UNIT - I. Introduction to C Programming. BY A. Vijay Bharath

Java+- Language Reference Manual

Chapter 2. Lexical Elements & Operators

CHIL CSS HTML Integrated Language

Language Reference Manual

C++ Programming Style Guide

Cisco IOS Shell. Finding Feature Information. Prerequisites for Cisco IOS.sh. Last Updated: December 14, 2012

Using the Code Review Module

Control Structures. Important Semantic Difference

Pace University. Fundamental Concepts of CS121 1

What is PHP? [1] Figure 1 [1]

Objectives. Coding Standards. Why coding standards? Elements of Java Style. Understand motivation for coding standards

Documentation Requirements Computer Science 2334 Spring 2016

Basic Syntax - First Program 1

IT441. Subroutines. (a.k.a., Functions, Methods, etc.) DRAFT. Network Services Administration

8. Control statements

UEE1302 (1102) F10: Introduction to Computers and Programming

Appendix. Grammar. A.1 Introduction. A.2 Keywords. There is no worse danger for a teacher than to teach words instead of things.

Compiler Errors. Flash CS4 Professional ActionScript 3.0 Language Reference. 1 of 18 9/6/2010 9:40 PM

SOFT 161. Class Meeting 1.6

VoiceXML Application Development Recommendations

CSC Web Programming. Introduction to JavaScript

Transcription:

PHP-FIG Home Blog PSRs Personnel Bylaws FAQs Get Involved PSR-2: Coding Style Guide This guide extends and expands on PSR-1, the basic coding standard. The intent of this guide is to reduce cognitive friction when scanning code from different authors. It does so by enumerating a shared set of rules and expectations about how to format PHP code. The style rules herein are derived from commonalities among the various member projects. When various authors collaborate across multiple projects, it helps to have one set of guidelines to be used among all those projects. Thus, the benefit of this guide is not in the rules themselves, but in the sharing of those rules. The key words MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL in this document are to be interpreted as described in RFC 2119. 1. Overview Code MUST follow a coding style guide PSR [PSR-1]. Code MUST use 4 spaces for indenting, not tabs. There MUST NOT be a hard limit on line length; the soft limit MUST be 120 characters; lines SHOULD be 80 characters or less. There MUST be one blank line after the namespace declaration, and there MUST be one blank line after the block of use declarations. Opening braces for classes MUST go on the next line, and closing braces MUST go on the next line after the body. https://www.php-fig.org/psr/psr-2/ 1/22

Opening braces for methods MUST go on the next line, and closing braces MUST go on the next line after the body. Visibility MUST be declared on all properties and methods; abstract and final MUST be declared before the visibility; static MUST be declared after the visibility. Control structure keywords MUST have one space after them; method and function calls MUST NOT. Opening braces for control structures MUST go on the same line, and closing braces MUST go on the next line after the body. Opening parentheses for control structures MUST NOT have a space after them, and closing parentheses for control structures MUST NOT have a space before. 1.1. Example This example encompasses some of the rules below as a quick overview: namespace Vendor\Package; use FooInterface; use BarClass as Bar; use OtherVendor\OtherPackage\BazClass; class Foo extends Bar implements FooInterface public function samplemethod($a, $b = null) if ($a === $b) bar(); elseif ($a > $b) $foo->bar($arg1); else BazClass::bar($arg2, $arg3); https://www.php-fig.org/psr/psr-2/ 2/22

final public static function bar() // method body 2. General 2.1. Basic Coding Standard Code MUST follow all rules outlined in PSR-1. 2.2. Files All PHP files MUST use the Unix LF (linefeed) line ending. All PHP files MUST end with a single blank line. The closing?> tag MUST be omitted from files containing only PHP. 2.3. Lines There MUST NOT be a hard limit on line length. The soft limit on line length MUST be 120 characters; automated style checkers MUST warn but MUST NOT error at the soft limit. Lines SHOULD NOT be longer than 80 characters; lines longer than that SHOULD be split into multiple subsequent lines of no more than 80 characters each. There MUST NOT be trailing whitespace at the end of non-blank lines. Blank lines MAY be added to improve readability and to indicate related blocks of code. https://www.php-fig.org/psr/psr-2/ 3/22

There MUST NOT be more than one statement per line. 2.4. Indenting Code MUST use an indent of 4 spaces, and MUST NOT use tabs for indenting. N.b.: Using only spaces, and not mixing spaces with tabs, helps to avoid problems with diffs, patches, history, and annotations. The use of spaces also makes it easy to insert fine-grained sub-indentation for inter-line alignment. 2.5. Keywords and True/False/Null PHP keywords MUST be in lower case. The PHP constants true, false, and null MUST be in lower case. 3. Namespace and Use Declarations When present, there MUST be one blank line after the namespace declaration. When present, all use declarations MUST go after the namespace declaration. There MUST be one use keyword per declaration. There MUST be one blank line after the use block. For example: namespace Vendor\Package; use FooClass; use BarClass as Bar; https://www.php-fig.org/psr/psr-2/ 4/22

use OtherVendor\OtherPackage\BazClass; //... additional PHP code... 4. Classes, Properties, and Methods The term class refers to all classes, interfaces, and traits. 4.1. Extends and Implements The extends and implements keywords MUST be declared on the same line as the class name. The opening brace for the class MUST go on its own line; the closing brace for the class MUST go on the next line after the body. namespace Vendor\Package; use FooClass; use BarClass as Bar; use OtherVendor\OtherPackage\BazClass; class ClassName extends ParentClass implements \ArrayAccess, \Countable // constants, properties, methods Lists of implements MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one interface per line. namespace Vendor\Package; https://www.php-fig.org/psr/psr-2/ 5/22

use FooClass; use BarClass as Bar; use OtherVendor\OtherPackage\BazClass; class ClassName extends ParentClass implements \ArrayAccess, \Countable, \Serializable // constants, properties, methods 4.2. Properties Visibility MUST be declared on all properties. The var keyword MUST NOT be used to declare a property. There MUST NOT be more than one property declared per statement. Property names SHOULD NOT be prefixed with a single underscore to indicate protected or private visibility. A property declaration looks like the following. namespace Vendor\Package; class ClassName public $foo = null; 4.3. Methods https://www.php-fig.org/psr/psr-2/ 6/22

Visibility MUST be declared on all methods. Method names SHOULD NOT be prefixed with a single underscore to indicate protected or private visibility. Method names MUST NOT be declared with a space after the method name. The opening brace MUST go on its own line, and the closing brace MUST go on the next line following the body. There MUST NOT be a space after the opening parenthesis, and there MUST NOT be a space before the closing parenthesis. A method declaration looks like the following. Note the placement of parentheses, commas, spaces, and braces: namespace Vendor\Package; class ClassName public function foobarbaz($arg1, &$arg2, $arg3 = []) // method body 4.4. Method Arguments In the argument list, there MUST NOT be a space before each comma, and there MUST be one space after each comma. Method arguments with default values MUST go at the end of the argument list. namespace Vendor\Package; https://www.php-fig.org/psr/psr-2/ 7/22

class ClassName public function foo($arg1, &$arg2, $arg3 = []) // method body Argument lists MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one argument per line. When the argument list is split across multiple lines, the closing parenthesis and opening brace MUST be placed together on their own line with one space between them. namespace Vendor\Package; class ClassName public function averylongmethodname( ClassTypeHint $arg1, &$arg2, array $arg3 = [] ) // method body 4.5. abstract, nal, and static When present, the abstract and final declarations MUST precede the visibility declaration. https://www.php-fig.org/psr/psr-2/ 8/22

When present, the static declaration MUST come after the visibility declaration. namespace Vendor\Package; abstract class ClassName protected static $foo; abstract protected function zim(); final public static function bar() // method body 4.6. Method and Function Calls When making a method or function call, there MUST NOT be a space between the method or function name and the opening parenthesis, there MUST NOT be a space after the opening parenthesis, and there MUST NOT be a space before the closing parenthesis. In the argument list, there MUST NOT be a space before each comma, and there MUST be one space after each comma. bar(); $foo->bar($arg1); Foo::bar($arg2, $arg3); Argument lists MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one argument per line. https://www.php-fig.org/psr/psr-2/ 9/22

$foo->bar( $longargument, $longerargument, $muchlongerargument ); 5. Control Structures The general style rules for control structures are as follows: There MUST be one space after the control structure keyword There MUST NOT be a space after the opening parenthesis There MUST NOT be a space before the closing parenthesis There MUST be one space between the closing parenthesis and the opening brace The structure body MUST be indented once The closing brace MUST be on the next line after the body The body of each structure MUST be enclosed by braces. This standardizes how the structures look, and reduces the likelihood of introducing errors as new lines get added to the body. 5.1. if, elseif, else An if structure looks like the following. Note the placement of parentheses, spaces, and braces; and that else and elseif are on the same line as the closing brace from the earlier body. if ($expr1) // if body elseif ($expr2) https://www.php-fig.org/psr/psr-2/ 10/22

// elseif body else // else body; The keyword elseif SHOULD be used instead of else if so that all control keywords look like single words. 5.2. switch, case A switch structure looks like the following. Note the placement of parentheses, spaces, and braces. The case statement MUST be indented once from switch, and the break keyword (or other terminating keyword) MUST be indented at the same level as the case body. There MUST be a comment such as // no break when fall-through is intentional in a non-empty case body. switch ($expr) case 0: echo 'First case, with a break'; break; case 1: echo 'Second case, which falls through'; // no break case 2: case 3: case 4: echo 'Third case, return instead of break'; return; default: echo 'Default case'; break; 5.3. while, do while https://www.php-fig.org/psr/psr-2/ 11/22

A while statement looks like the following. Note the placement of parentheses, spaces, and braces. while ($expr) // structure body Similarly, a do while statement looks like the following. Note the placement of parentheses, spaces, and braces. do // structure body; while ($expr); 5.4. for A for statement looks like the following. Note the placement of parentheses, spaces, and braces. for ($i = 0; $i < 10; $i++) // for body 5.5. foreach A foreach statement looks like the following. Note the placement of parentheses, spaces, and braces. foreach ($iterable as $key => $value) https://www.php-fig.org/psr/psr-2/ 12/22

// foreach body 5.6. try, catch A try catch block looks like the following. Note the placement of parentheses, spaces, and braces. try // try body catch (FirstExceptionType $e) // catch body catch (OtherExceptionType $e) // catch body 6. Closures Closures MUST be declared with a space after the function keyword, and a space before and after the use keyword. The opening brace MUST go on the same line, and the closing brace MUST go on the next line following the body. There MUST NOT be a space after the opening parenthesis of the argument list or variable list, and there MUST NOT be a space before the closing parenthesis of the argument list or variable list. In the argument list and variable list, there MUST NOT be a space before each comma, and there MUST be one space after each comma. Closure arguments with default values MUST go at the end of the argument list. https://www.php-fig.org/psr/psr-2/ 13/22

A closure declaration looks like the following. Note the placement of parentheses, commas, spaces, and braces: $closurewithargs = function ($arg1, $arg2) // body ; $closurewithargsandvars = function ($arg1, $arg2) use ($var1, $var2) ; // body Argument lists and variable lists MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one argument or variable per line. When the ending list (whether of arguments or variables) is split across multiple lines, the closing parenthesis and opening brace MUST be placed together on their own line with one space between them. The following are examples of closures with and without argument lists and variable lists split across multiple lines. $longargs_novars = function ( $longargument, $longerargument, $muchlongerargument ) // body ; $noargs_longvars = function () use ( $longvar1, $longervar2, https://www.php-fig.org/psr/psr-2/ 14/22

) ; $muchlongervar3 // body $longargs_longvars = function ( $longargument, $longerargument, $muchlongerargument ) use ( $longvar1, $longervar2, $muchlongervar3 ) // body ; $longargs_shortvars = function ( $longargument, $longerargument, $muchlongerargument ) use ($var1) // body ; $shortargs_longvars = function ($arg) use ( $longvar1, $longervar2, $muchlongervar3 ) // body ; Note that the formatting rules also apply when the closure is used directly in a function or method call as an argument. https://www.php-fig.org/psr/psr-2/ 15/22

$foo->bar( $arg1, function ($arg2) use ($var1) // body, $arg3 ); 7. Conclusion There are many elements of style and practice intentionally omitted by this guide. These include but are not limited to: Declaration of global variables and global constants Declaration of functions Operators and assignment Inter-line alignment Comments and documentation blocks Class name prefixes and suffixes Best practices Future recommendations MAY revise and extend this guide to address those or other elements of style and practice. Appendix A. Survey In writing this style guide, the group took a survey of member projects to determine common practices. The survey is retained herein for posterity. A.1. Survey Data https://www.php-fig.org/psr/psr-2/ 16/22

url,http://www.horde.org/apps/horde/docs/coding_standards,http://pear.php.net voting,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,yes,no,no,no,? indent_type,4,4,4,4,4,tab,4,tab,tab,2,4,tab,4,4,4,4,4,4,tab,tab,4,tab line_length_limit_soft,75,75,75,75,no,85,120,120,80,80,80,no,100,80,80,?,?,12 line_length_limit_hard,85,85,85,85,no,no,no,no,100,?,no,no,no,100,100,?,120,1 class_names,studly,studly,studly,studly,studly,studly,studly,studly,studly,st class_brace_line,next,next,next,next,next,same,next,same,same,same,same,next, constant_names,upper,upper,upper,upper,upper,upper,upper,upper,upper,upper,up true_false_null,lower,lower,lower,lower,lower,lower,lower,lower,lower,upper,l method_names,camel,camel,camel,camel,camel,camel,camel,camel,camel,camel,came method_brace_line,next,next,next,next,next,same,next,same,same,same,same,next control_brace_line,same,same,same,same,same,same,next,same,same,same,same,nex control_space_after,yes,yes,yes,yes,yes,no,yes,yes,yes,yes,no,yes,yes,yes,yes always_use_control_braces,yes,yes,yes,yes,yes,yes,no,yes,yes,yes,no,yes,yes,y else_elseif_line,same,same,same,same,same,same,next,same,same,next,same,next, case_break_indent_from_switch,0/1,0/1,0/1,1/2,1/2,1/2,1/2,1/1,1/1,1/2,1/2,1/1 function_space_after,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no,no closing_php_tag_required,no,no,no,no,no,no,no,no,yes,no,no,no,no,yes,no,no,no line_endings,lf,lf,lf,lf,lf,lf,lf,lf,?,lf,?,lf,lf,lf,lf,?,,lf,?,lf,lf,lf static_or_visibility_first,static,?,static,either,either,either,visibility,vi control_space_parens,no,no,no,no,no,no,yes,no,no,no,no,no,no,yes,?,no,no,no,n blank_line_after_php,no,no,no,no,yes,no,no,no,no,yes,yes,no,no,yes,?,yes,yes, class_method_control_brace,next/next/same,next/next/same,next/next/same,next/ A.2. Survey Legend indent_type : The type of indenting. tab = Use a tab, 2 or 4 = number of spaces line_length_limit_soft : The soft line length limit, in characters.? = not discernible or no response, no means no limit. line_length_limit_hard : The hard line length limit, in characters.? = not discernible or no response, no https://www.php-fig.org/psr/psr-2/ 17/22

means no limit. class_names : How classes are named. lower = lowercase only, lower_under = lowercase with underscore separators, studly = StudlyCase. class_brace_line : Does the opening brace for a class go on the same line as the class keyword, or on the next line after it? constant_names : How are class constants named? upper = Uppercase with underscore separators. true_false_null : Are the true, false, and null keywords spelled as all lower case, or all upper case? method_names : How are methods named? camel = camelcase, lower_under = lowercase with underscore separators. method_brace_line : Does the opening brace for a method go on the same line as the method name, or on the next line? control_brace_line : Does the opening brace for a control structure go on the same line, or on the next line? control_space_after : Is there a space after the control structure keyword? always_use_control_braces : Do control structures always use braces? https://www.php-fig.org/psr/psr-2/ 18/22

else_elseif_line : When using else or elseif, does it go on the same line as the previous closing brace, or does it go on the next line? case_break_indent_from_switch : How many times are case and break indented from an opening switch statement? function_space_after : Do function calls have a space after the function name and before the opening parenthesis? closing_php_tag_required : In files containing only PHP, is the closing?> tag required? line_endings : What type of line ending is used? static_or_visibility_first : When declaring a method, does static come first, or does the visibility come first? control_space_parens : In a control structure expression, is there a space after the opening parenthesis and a space before the closing parenthesis? yes = if ( $expr ), no = if ($expr). blank_line_after_php : Is there a blank line after the opening PHP tag? class_method_control_brace : A summary of what line the opening braces go on for classes, methods, and control structures. A.3. Survey Results https://www.php-fig.org/psr/psr-2/ 19/22

indent_type: tab: 7 2: 1 4: 14 line_length_limit_soft:?: 2 no: 3 75: 4 80: 6 85: 1 100: 1 120: 4 150: 1 line_length_limit_hard:?: 2 no: 11 85: 4 100: 3 120: 2 class_names:?: 1 lower: 1 lower_under: 1 studly: 19 class_brace_line: next: 16 same: 6 constant_names: upper: 22 true_false_null: lower: 19 upper: 3 method_names: camel: 21 lower_under: 1 method_brace_line: next: 15 same: 7 https://www.php-fig.org/psr/psr-2/ 20/22

control_brace_line: next: 4 same: 18 control_space_after: no: 2 yes: 20 always_use_control_braces: no: 3 yes: 19 else_elseif_line: next: 6 same: 16 case_break_indent_from_switch: 0/1: 4 1/1: 4 1/2: 14 function_space_after: no: 22 closing_php_tag_required: no: 19 yes: 3 line_endings:?: 5 LF: 17 static_or_visibility_first:?: 5 either: 7 static: 4 visibility: 6 control_space_parens:?: 1 no: 19 yes: 2 blank_line_after_php:?: 1 no: 13 yes: 8 class_method_control_brace: https://www.php-fig.org/psr/psr-2/ 21/22

next/next/next: 4 next/next/same: 11 next/same/same: 1 same/same/same: 6 Additional Info: PSR-2: Coding Style Guide PSR-2 Meta Document Follow us on Twitter Chat on IRC Channel Contribute via GitHub Join our mailing list 2018 PHP Framework Interop Group. Site design by Jonathan Reinink. Hosting sponsored by the PHP PaaS https://www.php-fig.org/psr/psr-2/ 22/22