Skip to content

Commit

Permalink
Merge pull request #1 from mrrsm/master
Browse files Browse the repository at this point in the history
Fix phpdoc comments
  • Loading branch information
ronytomen committed Nov 23, 2015
2 parents b152c7c + 05f7da8 commit 8ad76ca
Show file tree
Hide file tree
Showing 4 changed files with 727 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ class Barracuda_Sniffs_Commenting_DocCommentSniff implements PHP_CodeSniffer_Sni
'allow_multiple' => false,
),
'@package' => array(
'required' => true,
'required' => false,
'allow_multiple' => false,
),
'@subpackage' => array(
'required' => false,
'allow_multiple' => false,
),
'@author' => array(
'required' => true,
'required' => false,
'allow_multiple' => true,
),
'@copyright' => array(
Expand All @@ -38,7 +38,7 @@ class Barracuda_Sniffs_Commenting_DocCommentSniff implements PHP_CodeSniffer_Sni
'allow_multiple' => false,
),
'@link' => array(
'required' => true,
'required' => false,
'allow_multiple' => true,
),
'@see' => array(
Expand Down
Loading

0 comments on commit 8ad76ca

Please sign in to comment.