Commit 1dcac542 authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Fixes #1.

Showing with 2 additions and 1 deletion
+2 -1
...@@ -37,6 +37,7 @@ $rules = [ ...@@ -37,6 +37,7 @@ $rules = [
'phpdoc_order' => true, 'phpdoc_order' => true,
'semicolon_after_instruction' => true, 'semicolon_after_instruction' => true,
'yoda_style' => false, 'yoda_style' => false,
'self_accessor' => false,
'header_comment' => [ 'header_comment' => [
'commentType' => 'comment', 'commentType' => 'comment',
......
...@@ -359,5 +359,5 @@ interface UploadedFileInterface ...@@ -359,5 +359,5 @@ interface UploadedFileInterface
* *
* @api * @api
*/ */
public function hasSameContent(self $other); public function hasSameContent(UploadedFileInterface $other);
} }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment