@@ -67,7 +67,7 @@ protected function getRootDirectory( $phpcsFile ) {
6767 }
6868
6969 /**
70- * Get relative path from project root directory.
70+ * Get a relative path from project root directory.
7171 *
7272 * @since 1.0.0
7373 *
@@ -119,7 +119,7 @@ protected function normalizeFilename( $filename ) {
119119 }
120120
121121 /**
122- * Get first argument of a function.
122+ * Get the first argument of a function.
123123 *
124124 * @since 1.0.0
125125 *
@@ -152,7 +152,7 @@ protected function getFirstArgument( $phpcsFile, $stackPtr ) {
152152 }
153153
154154 /**
155- * Check whether the token is break in switch statement.
155+ * Check whether the token is break in the switch statement.
156156 *
157157 * @since 1.0.4
158158 *
@@ -176,7 +176,7 @@ protected function isBreakInSwitch( $phpcsFile, $token ) {
176176 }
177177
178178 /**
179- * Get fully qualified class name.
179+ * Get a fully qualified class name.
180180 *
181181 * @since 1.0.0
182182 *
@@ -219,7 +219,7 @@ protected function getFullyQualifiedClassName( $phpcsFile ) {
219219 $ fqcn = $ this ->camelToSnake ( str_replace ( '\\' , '' , $ namespace ) ) . '_ ' . $ class ;
220220
221221 // Fix WPForms.
222- // Remove _plugin for main plugin class, which is usually Plugin.
222+ // Remove _plugin for the main plugin class, which is usually Plugin.
223223 $ fqcn = str_replace ( [ 'wp_forms ' , '_plugin ' ], [ 'wpforms ' , '' ], $ fqcn );
224224
225225 $ fqcnArr = explode ( '_ ' , $ fqcn );
0 commit comments