-
-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2078 from phalcon/fix/2057
Fixed property visibility
- Loading branch information
Showing
52 changed files
with
1,246 additions
and
466 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,7 @@ engines: | |
enabled: true | ||
config: | ||
rulesets: "phpmd.xml.dist" | ||
|
||
exclude_paths: | ||
- 'ext/**' | ||
- 'prototypes/**' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
;;; Directory Local Variables | ||
;; For more information see (info "(emacs) Directory Variables") | ||
|
||
((zephir-mode . ((fill-column . 120) | ||
(indent-tabs-mode . nil))) | ||
(c-mode . ((fill-column . 80) | ||
(c-file-style . "k&r") | ||
(tab-width . 4) | ||
(c-basic-offset . 4) | ||
(indent-tabs-mode . t)))) | ||
((nil | ||
(indent-tabs-mode . nil)) | ||
(zephir-mode | ||
(fill-column . 120)) | ||
(c-mode | ||
(fill-column . 80) | ||
(c-file-style . "k&r") | ||
(tab-width . 4) | ||
(c-basic-offset . 4) | ||
(indent-tabs-mode . t) | ||
(flycheck-checker . c/c++-gcc) | ||
(flycheck-disabled-checkers . (c/c++-clang)) | ||
(flycheck-gcc-language-standard . "gnu99")) | ||
(php-mode | ||
(fill-column . 120) | ||
(c-file-style . nil) | ||
(indent-tabs-mode . nil) | ||
(flycheck-disabled-checkers . (php-phpmd php-phpcs)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.