Skip to content

Commit 08cdb9f

Browse files
author
brianvarskonst
committed
Fix Warning Message type - missing t
1 parent 905d47d commit 08cdb9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Inpsyde/Sniffs/CodeQuality/NoAccessorsSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public function process(File $file, $position)
115115
$file->addWarning(
116116
'Getters are discouraged. "Tell Don\'t Ask" principle should be applied if possible, '
117117
. 'and if getters are really needed consider naming methods after properties, '
118-
. 'e.g. id() instead of geId().',
118+
. 'e.g. id() instead of getId().',
119119
$position,
120120
'NoGetter'
121121
);

0 commit comments

Comments
 (0)