Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CODING_STANDARDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ rewritten to comply with these rules.
connect()
getData()
buildSomeWidget()
performHttpRequest()
performhttpRequest()
```

Bad method names:
Expand All @@ -183,15 +183,15 @@ rewritten to comply with these rules.
get_Data()
buildsomewidget()
getI()
performHTTPRequest()
performhttpsRequest()
```

Good class names:

```php
Curl
CurlResponse
HttpStatusCode
httpStatusCode
Url
BtreeMap // B-tree Map
UserId // User Identifier
Expand All @@ -207,10 +207,10 @@ rewritten to comply with these rules.
```php
curl
curl_response
HTTPStatusCode
httpstatusCode
URL
BTreeMap
UserID // User Identifier
UserID //User Identifier
CHAR
INTL
SSL\Certificate
Expand Down