Skip to content

Commit

Permalink
docs/internals-ja/core-code-style.md updated [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
softark committed Apr 27, 2016
1 parent da30db6 commit 55edd5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/internals-ja/core-code-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class Foo
- クラスのメソッドは常に修飾子 `private``protected` または `public` を使って、可視性を宣言すべきです。`var` は許可されません。
- 関数の開始の中括弧は関数宣言の次の行に置くべきです。

```
```php
/**
* ドキュメント
*/
Expand Down Expand Up @@ -273,9 +273,9 @@ if (!$model && null === $event)
```php
$result = $this->getResult();
if (empty($result)) {
return true;
return true;
} else {
// $result を処理
// $result を処理
}
```

Expand All @@ -284,7 +284,7 @@ if (empty($result)) {
```php
$result = $this->getResult();
if (empty($result)) {
return true;
return true;
}

// $result を処理
Expand Down

0 comments on commit 55edd5f

Please sign in to comment.