-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphp-coding-style.html
More file actions
33 lines (27 loc) · 1.39 KB
/
php-coding-style.html
File metadata and controls
33 lines (27 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="blog-header">
<h1 class="blog-title">CoInvestor - tech handbook</h1>
<h3>PHP coding style</h3>
</div>
<div class="row">
<div class="col-sm-12 blog-main">
<div class="blog-post">
<p>PSR-1 Basic Coding Standard It comprises what should be considered the standard coding elements that are required to ensure a high level of technical interoperability between shared PHP code.</p>
<p>PSR-2 Coding Style Guide It considers PSR-1 and it is intended 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.</p>
</div><!-- /.blog-post -->
</div><!-- /.blog-main -->
</div>
</body>
</html>