Fix the issues reported by phpcs

Created on 21 March 2023, about 2 years ago

Problem/Motivation

FILE: /modules/contrib/content_sync/content_sync.module
-------------------------------------------------------------------------------------
FOUND 18 ERRORS AND 4 WARNINGS AFFECTING 10 LINES
-------------------------------------------------------------------------------------
  68 | WARNING | [x] There must be no blank line following an inline comment
  68 | WARNING | [ ] There must be no blank line following an inline comment
  68 | ERROR   | [x] No space found before comment text; expected "// return $output;" but found "//return $output;"
  68 | ERROR   | [x] Inline comments must start with a capital letter
  68 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 131 | ERROR   | [ ] All functions defined in a module file must be prefixed with the module's name, found "content_file_download" but expected
     |         |     "content_sync_content_file_download"
 157 | ERROR   | [x] Line indented incorrectly; expected 0 spaces, found 2
 158 | ERROR   | [x] Line indented incorrectly; expected 0 spaces, found 2
 159 | ERROR   | [x] Line indented incorrectly; expected 0 spaces, found 2
 160 | ERROR   | [x] Line indented incorrectly; expected 1 spaces, found 0
 177 | ERROR   | [ ] global variables should start with a single underscore followed by the module and another underscore
 225 | WARNING | [ ] Unused variable $cache.
 225 | ERROR   | [x] Concat operator must be surrounded by a single space
 225 | ERROR   | [x] Concat operator must be surrounded by a single space
 225 | ERROR   | [x] Concat operator must be surrounded by a single space
 225 | ERROR   | [x] Concat operator must be surrounded by a single space
 259 | WARNING | [ ] Unused variable $cache.
 259 | ERROR   | [x] Concat operator must be surrounded by a single space
 259 | ERROR   | [x] Concat operator must be surrounded by a single space
 259 | ERROR   | [x] Concat operator must be surrounded by a single space
 259 | ERROR   | [x] Concat operator must be surrounded by a single space
 261 | ERROR   | [x] Expected 1 newline at end of file; 0 found
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 17 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/includes/content_sync.theme.inc
------------------------------------------------------------------------------------------
FOUND 5 ERRORS AND 12 WARNINGS AFFECTING 17 LINES
------------------------------------------------------------------------------------------
  6 | ERROR   | [x] There must be exactly one blank line after the file comment
  7 | WARNING | [x] Unused use statement
  8 | WARNING | [x] Unused use statement
  9 | WARNING | [x] Unused use statement
 10 | WARNING | [x] Unused use statement
 11 | WARNING | [x] Unused use statement
 12 | WARNING | [x] Unused use statement
 13 | WARNING | [x] Unused use statement
 14 | WARNING | [x] Unused use statement
 15 | WARNING | [x] Unused use statement
 16 | WARNING | [x] Unused use statement
 17 | WARNING | [x] Unused use statement
 18 | WARNING | [x] Unused use statement
 54 | ERROR   | [ ] Doc comment is empty
 55 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 56 | ERROR   | [ ] Doc comment is empty
 90 | ERROR   | [x] Expected 1 newline at end of file; 0 found
------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 15 MARKED SNIFF VIOLATIONS AUTOMATICALLY
------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/content_sync.admin.inc
-------------------------------------------------------------------------------------------
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
-------------------------------------------------------------------------------------------
 25 | WARNING | Only string literals should be passed to t() where possible
-------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/content_sync.routing.yml
-------------------------------------------------------------------------------------
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
-------------------------------------------------------------------------------------
 100 | WARNING | The administration page callback should probably use "administer site configuration" - which implies the user can change something - rather
     |         | than "access administration pages" which is about viewing but not changing configurations.
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/content_sync.install
--------------------------------------------------------------------------------------------------------
FOUND 9 ERRORS AFFECTING 9 LINES
--------------------------------------------------------------------------------------------------------
  1 | ERROR | [x] The PHP open tag must be followed by exactly one blank line
 10 | ERROR | [x] Expected 1 space before opening brace; found 0
 11 | ERROR | [x] No space found before comment text; expected "// Create the content snapshot." but found "//Create the content snapshot."
 23 | ERROR | [x] Array indentation error, expected 4 spaces but found 6
 24 | ERROR | [x] Array indentation error, expected 8 spaces but found 6
 31 | ERROR | [x] Array indentation error, expected 8 spaces but found 6
 38 | ERROR | [x] Array indentation error, expected 8 spaces but found 6
 44 | ERROR | [x] Array closing indentation error, expected 6 spaces but found 4
 47 | ERROR | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
--------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 9 MARKED SNIFF VIOLATIONS AUTOMATICALLY
--------------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/content_sync.links.task.yml
--------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
--------------------------------------------------------------------------------------
 44 | ERROR | [x] Expected 1 newline at end of file; 0 found
--------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
--------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/README.txt
--------------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
--------------------------------------------------------------------------------------------
 49 | ERROR | [x] Expected 1 newline at end of file; 3 found
--------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
--------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentImportTrait.php
-------------------------------------------------------------------------------------
FOUND 45 ERRORS AND 4 WARNINGS AFFECTING 32 LINES
-------------------------------------------------------------------------------------
  12 | ERROR   | [ ] Missing short description in doc comment
  13 | ERROR   | [ ] Missing parameter comment
  13 | ERROR   | [ ] Missing parameter type
  15 | ERROR   | [ ] Missing parameter comment
  15 | ERROR   | [ ] Missing parameter type
  17 | ERROR   | [ ] Missing parameter type
  19 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  20 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  22 | ERROR   | [ ] Description for the @return value is missing
  27 | ERROR   | [ ] The array declaration extends to column 89 (the limit is 80). The array content should be split up over multiple lines
  27 | ERROR   | [ ] The array declaration extends to column 88 (the limit is 80). The array content should be split up over multiple lines
  28 | ERROR   | [ ] The array declaration extends to column 85 (the limit is 80). The array content should be split up over multiple lines
  28 | ERROR   | [ ] The array declaration extends to column 84 (the limit is 80). The array content should be split up over multiple lines
  34 | ERROR   | [x] No space found before comment text; expected "// 'finished' => [$this, 'finishImportBatch']," but found "//'finished' => [$this,
     |         |     'finishImportBatch'],"
  40 | WARNING | [ ] Line exceeds 80 characters; contains 91 characters
  42 | ERROR   | [ ] Missing parameter comment
  42 | ERROR   | [ ] Missing parameter type
  43 | ERROR   | [ ] Missing parameter comment
  47 | ERROR   | [ ] Type hint "array" missing for $context
  47 | ERROR   | [ ] Arguments with default values must be at the end of the argument list
  62 | ERROR   | [x] Object operator not indented correctly; expected 8 spaces but found 41
  63 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
  73 | ERROR   | [x] Concat operator must be surrounded by a single space
  74 | WARNING | [ ] Unused variable $cache.
  74 | ERROR   | [x] Concat operator must be surrounded by a single space
  74 | ERROR   | [x] Concat operator must be surrounded by a single space
  74 | ERROR   | [x] Concat operator must be surrounded by a single space
  74 | ERROR   | [x] Concat operator must be surrounded by a single space
 100 | ERROR   | [ ] Parameter $content_to_delete is not described in comment
 101 | WARNING | [ ] Line exceeds 80 characters; contains 91 characters
 103 | ERROR   | [ ] Missing parameter comment
 103 | ERROR   | [ ] Missing parameter type
 104 | ERROR   | [ ] Missing parameter comment
 108 | ERROR   | [ ] Type hint "array" missing for $context
 108 | ERROR   | [ ] Arguments with default values must be at the end of the argument list
 120 | ERROR   | [x] list(...) is forbidden, use [...] instead.
 123 | ERROR   | [x] Object operator not indented correctly; expected 8 spaces but found 41
 133 | ERROR   | [x] Array indentation error, expected 12 spaces but found 10
 134 | ERROR   | [x] Array indentation error, expected 12 spaces but found 10
 137 | ERROR   | [x] Expected newline after closing brace
 137 | ERROR   | [x] Expected 1 space after ELSE keyword; 0 found
 149 | ERROR   | [x] Concat operator must be surrounded by a single space
 150 | WARNING | [ ] Unused variable $cache.
 150 | ERROR   | [x] Concat operator must be surrounded by a single space
 150 | ERROR   | [x] Concat operator must be surrounded by a single space
 150 | ERROR   | [x] Concat operator must be surrounded by a single space
 150 | ERROR   | [x] Concat operator must be surrounded by a single space
 151 | ERROR   | [x] Expected newline after closing brace
 206 | ERROR   | [x] Object operator not indented correctly; expected 8 spaces but found 24
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 23 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentSync.php
-------------------------------------------------------------------------------------
FOUND 18 ERRORS AND 3 WARNINGS AFFECTING 15 LINES
-------------------------------------------------------------------------------------
  38 | ERROR   | [x] Expected "\Drupal\Core\Config\ConfigManagerInterface" but found "\Drupal\Core\Config\ConfigManagerInterface;" for @var tag in member
     |         |     variable comment
  42 | ERROR   | [ ] Missing short description in doc comment
  89 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  90 | WARNING | [ ] \Drupal calls should be avoided in classes, use dependency injection instead
  95 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 110 | ERROR   | [x] No space found before comment text; expected "// check that there is something on the content sync folder." but found "//check that
     |         |     there is something on the content sync folder."
 110 | ERROR   | [x] Inline comments must start with a capital letter
 111 | WARNING | [ ] Unused variable $source_list.
 122 | ERROR   | [x] Functions must not contain multiple empty lines in a row; found 2 empty lines
 136 | ERROR   | [x] Concat operator must be surrounded by a single space
 136 | ERROR   | [x] Concat operator must be surrounded by a single space
 140 | ERROR   | [x] Concat operator must be surrounded by a single space
 140 | ERROR   | [x] Concat operator must be surrounded by a single space
 144 | ERROR   | [x] Concat operator must be surrounded by a single space
 144 | ERROR   | [x] Concat operator must be surrounded by a single space
 148 | ERROR   | [x] Concat operator must be surrounded by a single space
 148 | ERROR   | [x] Concat operator must be surrounded by a single space
 209 | ERROR   | [x] No space found before comment text; expected "// Set Batch to process the files from the content directory." but found "//Set Batch to
     |         |     process the files from the content directory."
 210 | ERROR   | [x] No space found before comment text; expected "// Get the files to be processed" but found "//Get the files to be processed"
 210 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 213 | WARNING | [ ] Unused variable $collection.
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 17 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentSingleImportForm.php
-----------------------------------------------------------------------------------------------
FOUND 7 ERRORS AND 1 WARNING AFFECTING 8 LINES
-----------------------------------------------------------------------------------------------
  17 | ERROR   | [ ] Missing short description in doc comment
  22 | ERROR   | [ ] Missing short description in doc comment
  35 | ERROR   | [x] Missing function doc comment
  79 | WARNING | [ ] Exceptions should not be translated
  81 | ERROR   | [x] Expected newline after closing brace
  84 | ERROR   | [x] Object operator not indented correctly; expected 8 spaces but found 11
 107 | ERROR   | [x] Expected 1 blank line after function; 0 found
 108 | ERROR   | [x] The closing brace for the class must have an empty line before it
-----------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 5 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-----------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentImportForm.php
-------------------------------------------------------------------------------------------------------
FOUND 41 ERRORS AFFECTING 22 LINES
-------------------------------------------------------------------------------------------------------
  16 | ERROR | [x] Expected 1 blank line before function; 0 found
  27 | ERROR | [ ] The array declaration extends to column 144 (the limit is 80). The array content should be split up over multiple lines
  80 | ERROR | [ ] The array declaration extends to column 195 (the limit is 80). The array content should be split up over multiple lines
  85 | ERROR | [x] Expected 1 blank line after function; 0 found
  86 | ERROR | [x] The closing brace for the class must have an empty line before it
  91 | ERROR | [ ] Invalid function name, expected empty_directory but found emptyDirectory
  91 | ERROR | [x] You must use "/**" style comments for a function comment
  91 | ERROR | [x] Expected one space after the comma, 0 found
  91 | ERROR | [x] Incorrect spacing between argument "$self_delete" and equals sign; expected 1 but found 0
  91 | ERROR | [x] Incorrect spacing between default value and equals sign for argument "$self_delete"; expected 1 but found 0
  91 | ERROR | [x] TRUE, FALSE and NULL must be uppercase; expected "FALSE" but found "false"
  92 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
  92 | ERROR | [x] Inline control structures are not allowed
  94 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
  94 | ERROR | [x] Inline control structures are not allowed
  95 | ERROR | [x] TRUE, FALSE and NULL must be uppercase; expected "FALSE" but found "false"
  96 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
  96 | ERROR | [x] Expected 1 space after WHILE keyword; 0 found
  97 | ERROR | [x] Line indented incorrectly; expected 4 spaces, found 6
  98 | ERROR | [x] Line indented incorrectly; expected 6 spaces, found 9
  98 | ERROR | [x] Inline control structures are not allowed
  98 | ERROR | [x] Concat operator must be surrounded by a single space
  98 | ERROR | [x] Concat operator must be surrounded by a single space
  99 | ERROR | [x] Concat operator must be surrounded by a single space
  99 | ERROR | [x] Concat operator must be surrounded by a single space
 100 | ERROR | [x] Line indented incorrectly; expected 6 spaces, found 9
 100 | ERROR | [x] Inline control structures are not allowed
 100 | ERROR | [x] Expected 1 space after ELSE keyword; newline found
 101 | ERROR | [x] Concat operator must be surrounded by a single space
 101 | ERROR | [x] Concat operator must be surrounded by a single space
 101 | ERROR | [x] Expected one space after the comma, 0 found
 101 | ERROR | [x] TRUE, FALSE and NULL must be uppercase; expected "TRUE" but found "true"
 102 | ERROR | [x] Line indented incorrectly; expected 4 spaces, found 6
 103 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
 104 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
 105 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
 105 | ERROR | [x] Expected 1 space after closing parenthesis; found 0
 106 | ERROR | [x] Line indented incorrectly; expected 4 spaces, found 8
 107 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
 108 | ERROR | [x] Line indented incorrectly; expected 2 spaces, found 3
 108 | ERROR | [x] TRUE, FALSE and NULL must be uppercase; expected "TRUE" but found "true"
-------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 38 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentSingleExportForm.php
---------------------------------------------------------------------------------------------------------
FOUND 21 ERRORS AND 1 WARNING AFFECTING 18 LINES
---------------------------------------------------------------------------------------------------------
  12 | ERROR   | [x] There must be one blank line after the last USE statement; 3 found;
  15 | ERROR   | [ ] More than 2 empty lines are not allowed
  35 | ERROR   | [ ] Missing short description in doc comment
  43 | ERROR   | [ ] Missing parameter comment
  45 | ERROR   | [ ] Parameter tags must be grouped together in a doc comment
  45 | ERROR   | [ ] Missing parameter comment
  47 | ERROR   | [ ] Parameter tags must be grouped together in a doc comment
  47 | ERROR   | [ ] Missing parameter comment
  92 | ERROR   | [x] Short array syntax must be used to define arrays
 102 | ERROR   | [x] Short array syntax must be used to define arrays
 105 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 106 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
 106 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 118 | ERROR   | [x] Array indentation error, expected 10 spaces but found 12
 121 | WARNING | [ ] Line exceeds 80 characters; contains 87 characters
 124 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
 124 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 153 | ERROR   | [ ] The array declaration extends to column 111 (the limit is 80). The array content should be split up over multiple lines
 167 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 171 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 178 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 181 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
---------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 13 MARKED SNIFF VIOLATIONS AUTOMATICALLY
---------------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentExportForm.php
-------------------------------------------------------------------------------------
FOUND 15 ERRORS AFFECTING 13 LINES
-------------------------------------------------------------------------------------
  21 | ERROR | [ ] Missing short description in doc comment
  26 | ERROR | [ ] Missing short description in doc comment
  31 | ERROR | [ ] Missing short description in doc comment
  40 | ERROR | [x] Expected 1 blank line before function; 2 found
  47 | ERROR | [x] Missing function doc comment
  81 | ERROR | [x] No space found before comment text; expected "// Set batch operations by entity type/bundle" but found "//Set batch operations by entity
     |       |     type/bundle"
  81 | ERROR | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  88 | ERROR | [x] Object operator not indented correctly; expected 10 spaces but found 44
 106 | ERROR | [x] Missing function doc comment
 107 | ERROR | [x] No space found before comment text; expected "// Set batch operations by entity type/bundle" but found "//Set batch operations by entity
     |       |     type/bundle"
 107 | ERROR | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 114 | ERROR | [x] Object operator not indented correctly; expected 10 spaces but found 44
 131 | ERROR | [ ] Missing short description in doc comment
 138 | ERROR | [ ] Missing short description in doc comment
 145 | ERROR | [ ] Missing short description in doc comment
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 9 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentExportTrait.php
-------------------------------------------------------------------------------------
FOUND 120 ERRORS AND 6 WARNINGS AFFECTING 93 LINES
-------------------------------------------------------------------------------------
  17 | ERROR   | [ ] Missing short description in doc comment
  18 | ERROR   | [x] Data types in @var tags need to be fully namespaced
  22 | ERROR   | [ ] Missing short description in doc comment
  23 | ERROR   | [ ] Missing parameter comment
  23 | ERROR   | [ ] Missing parameter type
  25 | ERROR   | [ ] Missing parameter type
  26 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  27 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  28 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  29 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  31 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  32 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  34 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  35 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  37 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  38 | ERROR   | [x] Parameter comment indentation must be 3 spaces, found 1 spaces
  40 | ERROR   | [ ] Description for the @return value is missing
  43 | ERROR   | [x] Expected 1 space after "="; 2 found
  46 | ERROR   | [x] Expected 1 space after "="; 2 found
  54 | ERROR   | [x] No space found before comment text; expected "// Set batch operations by entity type/bundle" but found "//Set batch operations by
     |         |     entity type/bundle"
  54 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  56 | ERROR   | [ ] The array declaration extends to column 81 (the limit is 80). The array content should be split up over multiple lines
  58 | ERROR   | [ ] The array declaration extends to column 94 (the limit is 80). The array content should be split up over multiple lines
  58 | ERROR   | [ ] The array declaration extends to column 93 (the limit is 80). The array content should be split up over multiple lines
  65 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  68 | WARNING | [ ] Only string literals should be passed to t() where possible
  75 | ERROR   | [x] Expected one space after the comma, 0 found
  80 | ERROR   | [ ] Parameter $entities is not described in comment
  81 | ERROR   | [x] Doc comment short description must end with a full stop
  83 | ERROR   | [ ] Missing parameter type
  85 | ERROR   | [ ] Missing parameter comment
  85 | ERROR   | [ ] Missing parameter type
  89 | ERROR   | [ ] Type hint "array" missing for $context
  89 | ERROR   | [ ] Arguments with default values must be at the end of the argument list
  90 | ERROR   | [x] No space found before comment text; expected "// Initialize Batch" but found "//Initialize Batch"
  90 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  99 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 102 | ERROR   | [x] No space found before comment text; expected "// Validate that it is a Content Entity" but found "//Validate that it is a Content
     |         |     Entity"
 102 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 108 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 111 | ERROR   | [x] Object operator not indented correctly; expected 10 spaces but found 23
 113 | ERROR   | [x] Expected newline after closing brace
 113 | ERROR   | [x] Expected 1 space after ELSE keyword; 0 found
 116 | ERROR   | [x] Object operator not indented correctly; expected 10 spaces but found 23
 119 | ERROR   | [x] No space found before comment text; expected "// Make sure the entity exist for import" but found "//Make sure the entity exist for
     |         |     import"
 119 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 120 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
 120 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 121 | ERROR   | [x] Concat operator must be surrounded by a single space
 121 | ERROR   | [x] Concat operator must be surrounded by a single space
 122 | ERROR   | [x] Expected newline after closing brace
 122 | ERROR   | [x] Expected 1 space after ELSE keyword; 0 found
 124 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 127 | ERROR   | [x] Concat operator must be surrounded by a single space
 133 | ERROR   | [x] Object operator not indented correctly; expected 12 spaces but found 34
 135 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 137 | ERROR   | [x] No space found before comment text; expected "// Save to cs_db_snapshot table." but found "//Save to cs_db_snapshot table."
 139 | ERROR   | [x] Concat operator must be surrounded by a single space
 139 | ERROR   | [x] Concat operator must be surrounded by a single space
 140 | ERROR   | [x] Expected newline after closing brace
 140 | ERROR   | [x] Expected 1 space after ELSE keyword; 0 found
 147 | ERROR   | [x] There should be no white space before a closing ")"
 147 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 148 | ERROR   | [x] No space found before comment text; expected "// Save to cs_db_snapshot table." but found "//Save to cs_db_snapshot table."
 149 | ERROR   | [x] Concat operator must be surrounded by a single space
 149 | ERROR   | [x] Concat operator must be surrounded by a single space
 158 | ERROR   | [x] There should be no white space before a closing ")"
 163 | ERROR   | [x] Space found before comma in argument list
 163 | ERROR   | [x] There should be no white space before a closing ")"
 165 | WARNING | [x] 'TODO: add a notice/log about it.' should match the format '@todo Fix problem X here.'
 171 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
 171 | ERROR   | [x] There should be no white space after an opening "("
 173 | ERROR   | [x] Concat operator must be surrounded by a single space
 176 | WARNING | [ ] Unused variable $file.
 176 | ERROR   | [x] Expected 1 space after "="; 2 found
 180 | WARNING | [ ] Unused variable $cache.
 180 | ERROR   | [x] Concat operator must be surrounded by a single space
 180 | ERROR   | [x] Concat operator must be surrounded by a single space
 180 | ERROR   | [x] Concat operator must be surrounded by a single space
 180 | ERROR   | [x] Concat operator must be surrounded by a single space
 184 | ERROR   | [x] No space found before comment text; expected "// Include Dependencies" but found "//Include Dependencies"
 184 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 188 | ERROR   | [x] There should be no white space after an opening "("
 189 | ERROR   | [x] Expected one space after the comma, 0 found
 191 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
 191 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 192 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 212 | ERROR   | [ ] Parameter $serializer_context is not described in comment
 214 | ERROR   | [ ] Doc comment short description must be on a single line, further text should be a separate paragraph
 216 | ERROR   | [ ] Missing parameter type
 221 | ERROR   | [ ] Public method name "ContentExportTrait::generateSiteUUIDFile" is not in lowerCamel format
 221 | ERROR   | [ ] Type hint "array" missing for $context
 222 | ERROR   | [x] No space found before comment text; expected "// Include Site UUID to YML file" but found "//Include Site UUID to YML file"
 222 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 227 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 229 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 231 | ERROR   | [x] No space found before comment text; expected "// Save to cs_db_snapshot table." but found "//Save to cs_db_snapshot table."
 234 | ERROR   | [x] Expected newline after closing brace
 234 | ERROR   | [x] Expected 1 space after ELSEIF keyword; 0 found
 234 | ERROR   | [x] There should be no white space after an opening "("
 235 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 237 | ERROR   | [x] Expected newline after closing brace
 237 | ERROR   | [x] Expected 1 space after ELSEIF keyword; 0 found
 237 | ERROR   | [x] There should be no white space after an opening "("
 241 | WARNING | [ ] Unused variable $file.
 254 | ERROR   | [x] Line indented incorrectly; expected 2 spaces, found 3
 256 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 261 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 264 | WARNING | [ ] Line exceeds 80 characters; contains 88 characters
 264 | ERROR   | [x] No space found before comment text; expected "// drupal_set_message(t('Processed UUID @title.', array('@title' => $result)));" but
     |         |     found "//drupal_set_message(t('Processed UUID @title.', array('@title' => $result)));"
 264 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 266 | ERROR   | [x] Object operator not indented correctly; expected 12 spaces but found 15
 273 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 281 | ERROR   | [x] Object operator not indented correctly; expected 10 spaces but found 13
 287 | ERROR   | [x] Object operator not indented correctly; expected 10 spaces but found 13
 288 | ERROR   | [x] Expected 1 space after "=>"; 2 found
 298 | ERROR   | [x] Object operator not indented correctly; expected 8 spaces but found 11
 300 | ERROR   | [x] Closing brace indented incorrectly; expected 3 spaces, found 2
 302 | ERROR   | [x] Missing function doc comment
 309 | ERROR   | [x] Missing function doc comment
 313 | ERROR   | [ ] Missing short description in doc comment
 314 | ERROR   | [ ] Description for the @return value is missing
 318 | ERROR   | [ ] Missing short description in doc comment
 319 | ERROR   | [ ] Description for the @return value is missing
 323 | ERROR   | [ ] Missing short description in doc comment
 324 | ERROR   | [ ] Description for the @return value is missing
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 95 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentLogFilterForm.php
----------------------------------------------------------------------------------------------------------
FOUND 1 ERROR AND 2 WARNINGS AFFECTING 1 LINE
----------------------------------------------------------------------------------------------------------
 24 | WARNING | [x] There must be no blank line following an inline comment
 24 | WARNING | [ ] There must be no blank line following an inline comment
 24 | ERROR   | [x] No space found before comment text; expected "// $filters = cs_log_filters();" but found "//$filters = cs_log_filters();"
----------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentSettingsForm.php
-------------------------------------------------------------------------------------------
FOUND 3 ERRORS AFFECTING 3 LINES
-------------------------------------------------------------------------------------------
  8 | ERROR | [x] Missing class doc comment
 24 | ERROR | [x] Short array syntax must be used to define arrays
 61 | ERROR | [x] Expected 1 newline at end of file; 0 found
-------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 3 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Form/ContentExportMultiple.php
----------------------------------------------------------------------------------------------------------
FOUND 9 ERRORS AND 2 WARNINGS AFFECTING 9 LINES
----------------------------------------------------------------------------------------------------------
  16 | ERROR   | [x] Doc comment short description must end with a full stop
  19 | WARNING | [ ] The class short comment should describe what the class does and not simply repeat the class name
  38 | ERROR   | [ ] Missing short description in doc comment
  43 | ERROR   | [ ] Missing short description in doc comment
  48 | ERROR   | [ ] Missing short description in doc comment
  53 | ERROR   | [ ] Missing member variable doc comment
  55 | ERROR   | [ ] Parameter $content_sync_manager is not described in comment
  55 | ERROR   | [ ] Parameter $formats is not described in comment
  55 | ERROR   | [ ] Parameter $file_system is not described in comment
 109 | WARNING | [ ] t() calls should be avoided in classes, use \Drupal\Core\StringTranslation\StringTranslationTrait and $this->t() instead
 143 | ERROR   | [x] Expected 1 blank line after function; 2 found
----------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Importer/ContentImporterInterface.php
---------------------------------------------------------------------------------------
FOUND 11 ERRORS AFFECTING 9 LINES
---------------------------------------------------------------------------------------
  3 | ERROR | [x] There must be one blank line after the namespace declaration
  6 | ERROR | [x] Missing interface doc comment
  8 | ERROR | [ ] Missing short description in doc comment
  9 | ERROR | [ ] Missing parameter comment
  9 | ERROR | [ ] Missing parameter type
 10 | ERROR | [ ] Missing parameter comment
 10 | ERROR | [ ] Missing parameter type
 11 | ERROR | [ ] Missing parameter comment
 13 | ERROR | [ ] Description for the @return value is missing
 15 | ERROR | [ ] Type hint "array" missing for $context
 17 | ERROR | [x] Expected 1 newline at end of file; 0 found
---------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 3 MARKED SNIFF VIOLATIONS AUTOMATICALLY
---------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Importer/ContentImporter.php
-------------------------------------------------------------------------------------
FOUND 42 ERRORS AND 1 WARNING AFFECTING 36 LINES
-------------------------------------------------------------------------------------
  10 | ERROR   | [x] Missing class doc comment
  14 | ERROR   | [ ] Missing member variable doc comment
  16 | ERROR   | [ ] Missing member variable doc comment
  18 | ERROR   | [ ] Missing member variable doc comment
  20 | ERROR   | [ ] Missing short description in doc comment
  25 | ERROR   | [ ] Missing short description in doc comment
  38 | ERROR   | [x] Missing function doc comment
  52 | WARNING | [ ] Line exceeds 80 characters; contains 90 characters
  52 | ERROR   | [x] No space found before comment text; expected "// Exception for parent null -- allowing the term to be displayed on the taxonomy list."
     |         |     but found "//Exception for parent null -- allowing the term to be displayed on the taxonomy list."
  54 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
  54 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  59 | ERROR   | [x] No space found before comment text; expected "// Get Translations before denormalize" but found "//Get Translations before denormalize"
  59 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  60 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
  60 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  74 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  75 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  76 | ERROR   | [x] There should be no white space after an opening "("
  76 | ERROR   | [x] There should be no white space before a closing ")"
  86 | ERROR   | [ ] Missing parameter type
  92 | ERROR   | [ ] Missing parameter type
  95 | ERROR   | [ ] Type hint "\Drupal\Core\Entity\ContentEntityType" missing for $entity_type
  95 | ERROR   | [ ] Type hint "array" missing for $entity_translations
 107 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 108 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 126 | ERROR   | [ ] Missing short description in doc comment
 127 | ERROR   | [ ] Description for the @return value is missing
 136 | ERROR   | [x] Data types in @param tags need to be fully namespaced
 139 | ERROR   | [x] Data types in @return tags need to be fully namespaced
 157 | ERROR   | [ ] Missing parameter type
 172 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
 172 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 189 | ERROR   | [x] Object operator not indented correctly; expected 6 spaces but found 47
 202 | ERROR   | [x] Object operator not indented correctly; expected 14 spaces but found 54
 218 | ERROR   | [x] Data types in @param tags need to be fully namespaced
 220 | ERROR   | [x] Data types in @param tags need to be fully namespaced
 242 | ERROR   | [x] Object operator not indented correctly; expected 8 spaces but found 26
 277 | ERROR   | [x] Object operator not indented correctly; expected 12 spaces but found 17
 284 | ERROR   | [ ] Missing short description in doc comment
 285 | ERROR   | [ ] Description for the @return value is missing
 291 | ERROR   | [ ] Missing short description in doc comment
 292 | ERROR   | [ ] Missing parameter comment
 294 | ERROR   | [ ] Type hint "array" missing for $context
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 25 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Logger/ContentSyncLog.php
----------------------------------------------------------------------------------------
FOUND 1 ERROR AND 5 WARNINGS AFFECTING 6 LINES
----------------------------------------------------------------------------------------
  5 | WARNING | [x] Unused use statement
 12 | ERROR   | [x] There must be one blank line after the last USE statement; 2 found;
 83 | WARNING | [ ] Line exceeds 80 characters; contains 82 characters
 87 | WARNING | [ ] Line exceeds 80 characters; contains 82 characters
 90 | WARNING | [ ] Line exceeds 80 characters; contains 81 characters
 91 | WARNING | [ ] Line exceeds 80 characters; contains 81 characters
----------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Encoder/YamlEncoder.php
----------------------------------------------------------------------------------------------
FOUND 11 ERRORS AND 2 WARNINGS AFFECTING 10 LINES
----------------------------------------------------------------------------------------------
  8 | WARNING | [x] Unused use statement
  8 | ERROR   | [x] There must be one blank line after the last USE statement; 2 found;
 15 | WARNING | [ ] The class short comment should describe what the class does and not simply repeat the class name
 16 | ERROR   | [x] Expected 1 space before opening brace; found 0
 25 | ERROR   | [ ] Missing member variable doc comment
 34 | ERROR   | [x] Missing function doc comment
 34 | ERROR   | [x] Short array syntax must be used to define arrays
 38 | ERROR   | [x] Missing function doc comment
 42 | ERROR   | [x] Missing function doc comment
 42 | ERROR   | [x] Short array syntax must be used to define arrays
 46 | ERROR   | [x] Missing function doc comment
 48 | ERROR   | [x] Expected 1 blank line after function; 0 found
 49 | ERROR   | [x] The closing brace for the class must have an empty line before it
----------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 11 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/ContentSyncManagerInterface.php
----------------------------------------------------------------------------------------------
FOUND 9 ERRORS AND 1 WARNING AFFECTING 10 LINES
----------------------------------------------------------------------------------------------
  3 | ERROR   | [x] There must be one blank line after the namespace declaration
 10 | WARNING | [ ] The class short comment should describe what the class does and not simply repeat the class name
 13 | ERROR   | [ ] Missing short description in doc comment
 14 | ERROR   | [ ] Description for the @return value is missing
 18 | ERROR   | [ ] Missing short description in doc comment
 19 | ERROR   | [ ] Description for the @return value is missing
 23 | ERROR   | [ ] Missing short description in doc comment
 24 | ERROR   | [ ] Description for the @return value is missing
 28 | ERROR   | [ ] Missing short description in doc comment
 29 | ERROR   | [ ] Description for the @return value is missing
----------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Plugin/SyncNormalizerDecoratorTrait.php
-----------------------------------------------------------------------------------------
FOUND 8 ERRORS AND 3 WARNINGS AFFECTING 11 LINES
-----------------------------------------------------------------------------------------
  7 | ERROR   | [x] Missing trait doc comment
  9 | ERROR   | [x] Missing function doc comment
 16 | WARNING | [x] Inline @var declarations should use the /** */ delimiters
 22 | ERROR   | [x] Missing function doc comment
 25 | WARNING | [x] Inline @var declarations should use the /** */ delimiters
 31 | ERROR   | [x] Missing function doc comment
 34 | WARNING | [x] Inline @var declarations should use the /** */ delimiters
 40 | ERROR   | [ ] Missing short description in doc comment
 41 | ERROR   | [ ] Description for the @return value is missing
 43 | ERROR   | [x] The abstract declaration must precede the visibility declaration
 45 | ERROR   | [x] Expected 1 newline at end of file; 0 found
-----------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 9 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-----------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Plugin/SyncNormalizerDecoratorInterface.php
---------------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
---------------------------------------------------------------------------------------------
 21 | ERROR | [x] Expected 1 blank line after function; 2 found
---------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
---------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Plugin/Action/ExportNodes.php
--------------------------------------------------------------------------------------------
FOUND 2 ERRORS AFFECTING 2 LINES
--------------------------------------------------------------------------------------------
 48 | ERROR | [x] Data types in @param tags need to be fully namespaced
 91 | ERROR | [x] Short array syntax must be used to define arrays
--------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
--------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Plugin/SyncNormalizerDecoratorBase.php
----------------------------------------------------------------------------------------
FOUND 2 ERRORS AFFECTING 2 LINES
----------------------------------------------------------------------------------------
 32 | ERROR | [x] Expected 1 blank line after function; 0 found
 33 | ERROR | [x] The closing brace for the class must have an empty line before it
----------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Plugin/SyncNormalizerDecorator/IdsCleaner.php
-----------------------------------------------------------------------------------------------
FOUND 38 ERRORS AFFECTING 33 LINES
-----------------------------------------------------------------------------------------------
  22 | ERROR | [x] Additional blank lines found at end of doc comment
  25 | ERROR | [ ] Missing short description in doc comment
  30 | ERROR | [ ] Missing short description in doc comment
  35 | ERROR | [ ] Missing short description in doc comment
  36 | ERROR | [ ] Missing parameter comment
  37 | ERROR | [ ] Missing parameter comment
  38 | ERROR | [ ] Missing parameter comment
  39 | ERROR | [ ] Missing parameter comment
  53 | ERROR | [ ] Missing short description in doc comment
  54 | ERROR | [ ] Missing parameter comment
  55 | ERROR | [ ] Missing parameter comment
  56 | ERROR | [ ] Missing parameter comment
  58 | ERROR | [ ] Missing parameter comment
  59 | ERROR | [ ] Missing parameter comment
  61 | ERROR | [x] Additional blank lines found at end of doc comment
  80 | ERROR | [ ] Missing short description in doc comment
  81 | ERROR | [ ] Missing parameter comment
  82 | ERROR | [ ] Missing parameter comment
  83 | ERROR | [ ] Missing parameter comment
  83 | ERROR | [ ] Missing parameter type
  84 | ERROR | [ ] Missing parameter comment
  90 | ERROR | [ ] Missing short description in doc comment
  91 | ERROR | [ ] Missing parameter comment
  91 | ERROR | [ ] Missing parameter type
  92 | ERROR | [ ] Missing parameter comment
  94 | ERROR | [ ] Description for the @return value is missing
 107 | ERROR | [x] Expected 1 space after IF keyword; 0 found
 107 | ERROR | [x] Expected 1 space after closing parenthesis; found 0
 115 | ERROR | [x] Expected 1 space after closing parenthesis; found 0
 121 | ERROR | [x] Expected 1 space after closing parenthesis; found 0
 122 | ERROR | [x] Expected 1 space after FUNCTION keyword; 0 found
 130 | ERROR | [ ] Missing short description in doc comment
 130 | ERROR | [ ] Parameter $bundle is not described in comment
 131 | ERROR | [ ] Missing parameter comment
 132 | ERROR | [ ] Missing parameter comment
 132 | ERROR | [ ] Missing parameter type
 134 | ERROR | [ ] Description for the @return value is missing
 136 | ERROR | [ ] Type hint "array" missing for $data
-----------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 7 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-----------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Element/ContentSyncMessage.php
---------------------------------------------------------------------------------------------------
FOUND 4 ERRORS AFFECTING 4 LINES
---------------------------------------------------------------------------------------------------
  83 | ERROR | The array declaration extends to column 117 (the limit is 80). The array content should be split up over multiple lines
  99 | ERROR | The array declaration extends to column 82 (the limit is 80). The array content should be split up over multiple lines
 151 | ERROR | Doc comment is empty
 153 | ERROR | Doc comment is empty
---------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Content/ContentStorageComparer.php
-------------------------------------------------------------------------------------------------
FOUND 41 ERRORS AND 5 WARNINGS AFFECTING 36 LINES
-------------------------------------------------------------------------------------------------
   6 | ERROR   | [x] There must be one blank line after the last USE statement; 2 found;
  35 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  54 | ERROR   | [x] Expected 1 space after FOREACH keyword; 0 found
  54 | WARNING | [ ] Unused variable $key.
  54 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  55 | ERROR   | [x] Concat operator must be surrounded by a single space
  55 | ERROR   | [x] Concat operator must be surrounded by a single space
  58 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
  59 | ERROR   | [x] There should be no white space before a closing ")"
  59 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  66 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
  66 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  69 | WARNING | [ ] Unused variable $target_data.
  70 | WARNING | [ ] Unused variable $source_data.
  73 | ERROR   | [x] TRUE, FALSE and NULL must be uppercase; expected "TRUE" but found "true"
  75 | ERROR   | [x] TRUE, FALSE and NULL must be uppercase; expected "FALSE" but found "false"
  78 | ERROR   | [x] Line indented incorrectly; expected 2 spaces, found 4
  88 | ERROR   | [x] Line indented incorrectly; expected 2 spaces, found 4
  89 | ERROR   | [x] Opening brace should be on the same line as the declaration
  90 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 8
  91 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 8
  92 | ERROR   | [x] Line indented incorrectly; expected 6 spaces, found 12
  93 | ERROR   | [x] Line indented incorrectly; expected 6 spaces, found 12
  94 | ERROR   | [x] Line indented incorrectly; expected 6 spaces, found 12
  95 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 16
  96 | WARNING | [ ] Line exceeds 80 characters; contains 90 characters
  96 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 20
  97 | WARNING | [ ] Line exceeds 80 characters; contains 89 characters
  97 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 20
  98 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 20
  99 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 20
 100 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 16
 100 | ERROR   | [x] Expected newline after closing brace
 101 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 18
 102 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 16
 102 | ERROR   | [x] Expected newline after closing brace
 103 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 20
 104 | ERROR   | [x] Expected 1 space after closing parenthesis; found 21
 106 | ERROR   | [x] Line indented incorrectly; expected 12 spaces, found 24
 107 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 20
 108 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 16
 109 | ERROR   | [x] Line indented incorrectly; expected 6 spaces, found 12
 110 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 8
 111 | ERROR   | [x] Line indented incorrectly; expected 2 spaces, found 4
 111 | ERROR   | [x] Expected 1 blank line after function; 0 found
 112 | ERROR   | [x] The closing brace for the class must have an empty line before it
-------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 41 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Content/ContentFileStorageFactory.php
-------------------------------------------------------------------------------------
FOUND 6 ERRORS AFFECTING 5 LINES
-------------------------------------------------------------------------------------
 13 | ERROR | [ ] Description for the @return value must be on the next line
 15 | ERROR | [ ] Each @deprecated tag must have a @see tag immediately following it
 15 | ERROR | [x] The text '@deprecated in Drupal 8.0.x and will be removed before 9.0.0. Drupal core no longer creates an active directory.' does not match
    |       |     the standard format: @deprecated in %deprecation-version% and is removed from %removal-version%. %extra-info%.
 27 | ERROR | [ ] Description for the @return value must be on the next line
 33 | ERROR | [x] Expected 1 blank line after function; 0 found
 34 | ERROR | [x] The closing brace for the class must have an empty line before it
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 3 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Content/ContentDatabaseStorage.php
-------------------------------------------------------------------------------------------------
FOUND 5 ERRORS AFFECTING 5 LINES
-------------------------------------------------------------------------------------------------
 16 | ERROR | Public method name "ContentDatabaseStorage::cs_write" is not in lowerCamel format
 41 | ERROR | Description for the @return value is missing
 43 | ERROR | Protected method name "ContentDatabaseStorage::cs_doWrite" is not in lowerCamel format
 58 | ERROR | Public method name "ContentDatabaseStorage::cs_read" is not in lowerCamel format
 80 | ERROR | Public method name "ContentDatabaseStorage::cs_delete" is not in lowerCamel format
-------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Controller/ContentLogController.php
-------------------------------------------------------------------------------------
FOUND 17 ERRORS AND 6 WARNINGS AFFECTING 21 LINES
-------------------------------------------------------------------------------------
  73 | ERROR   | [ ] Parameter $entity_type_manager is not described in comment
 133 | WARNING | [x] There must be no blank line following an inline comment
 133 | WARNING | [ ] There must be no blank line following an inline comment
 133 | ERROR   | [x] No space found before comment text; expected "// $build['admin_filter_form'] =
     |         |     $this->formBuilder->getForm('Drupal\content_sync\Form\ContentLogFilterForm');" but found "//$build['admin_filter_form'] =
     |         |     $this->formBuilder->getForm('Drupal\content_sync\Form\ContentLogFilterForm');"
 146 | ERROR   | [x] Closing parenthesis of array declaration must be on a new line
 151 | ERROR   | [x] Closing parenthesis of array declaration must be on a new line
 154 | ERROR   | [x] Closing parenthesis of array declaration must be on a new line
 184 | WARNING | [ ] Unused variable $log_text.
 187 | WARNING | [ ] Line exceeds 80 characters; contains 91 characters
 188 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 10
 189 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 12
 190 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 12
 191 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 12
 192 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 12
 193 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 10
 211 | ERROR   | [ ] The array declaration extends to column 84 (the limit is 80). The array content should be split up over multiple lines
 221 | ERROR   | [x] No space found before comment text; expected "// '#attached' => [" but found "//'#attached' => ["
 223 | ERROR   | [x] No space found before comment text; expected "// ]," but found "//],"
 253 | WARNING | [ ] Only string literals should be passed to t() where possible
 309 | ERROR   | [ ] Function return type is not void, but function is returning void here
 350 | ERROR   | [ ] unserialize() is insecure unless allowed classes are limited. Use a safe format like JSON or use the allowed_classes option.
 360 | WARNING | [ ] Only string literals should be passed to t() where possible
 412 | ERROR   | [x] Equals sign not aligned with surrounding assignments; expected 1 space but found 2 spaces
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 14 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Controller/ContentController.php
-------------------------------------------------------------------------------------
FOUND 20 ERRORS AND 5 WARNINGS AFFECTING 16 LINES
-------------------------------------------------------------------------------------
   6 | WARNING | [x] Unused use statement
  10 | ERROR   | [x] No space found before comment text; expected "// use Drupal\Core\Archiver\ArchiveTar;" but found "//use
     |         |     Drupal\Core\Archiver\ArchiveTar;"
  10 | ERROR   | [x] Inline comments must start with a capital letter
  10 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  14 | ERROR   | [x] No space found before comment text; expected "// use Drupal\Core\Serialization\Yaml;" but found "//use Drupal\Core\Serialization\Yaml;"
  14 | ERROR   | [x] Inline comments must start with a capital letter
  14 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  16 | ERROR   | [x] No space found before comment text; expected "// use Symfony\Component\HttpFoundation\Request;" but found "//use
     |         |     Symfony\Component\HttpFoundation\Request;"
  16 | ERROR   | [x] Inline comments must start with a capital letter
  16 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  17 | ERROR   | [x] There must be one blank line after the last USE statement; 2 found;
  72 | ERROR   | [ ] Parameter $content_manager is not described in comment
  72 | ERROR   | [ ] Parameter $diff_formatter is not described in comment
  72 | ERROR   | [ ] Parameter $file_system is not described in comment
  78 | ERROR   | [x] Parameter comment must end with a full stop
  79 | ERROR   | [ ] Doc comment for parameter $file_download_controller does not match actual variable name $file_system
  95 | ERROR   | [x] No space found before comment text; expected "// $request = new Request(['file' => 'content.tar.gz']);" but found "//$request = new
     |         |     Request(['file' => 'content.tar.gz']);"
  96 | ERROR   | [x] No space found before comment text; expected "// return $this->fileDownloadController->download($request, 'temporary');" but found
     |         |     "//return $this->fileDownloadController->download($request, 'temporary');"
  96 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  99 | ERROR   | [x] There should be no white space before a closing ")"
 101 | WARNING | [ ] \Drupal calls should be avoided in classes, use dependency injection instead
 102 | ERROR   | [x] Short array syntax must be used to define arrays
 137 | WARNING | [ ] t() calls should be avoided in classes, use \Drupal\Core\StringTranslation\StringTranslationTrait and $this->t() instead
 147 | WARNING | [ ] t() calls should be avoided in classes, use \Drupal\Core\StringTranslation\StringTranslationTrait and $this->t() instead
 148 | WARNING | [ ] t() calls should be avoided in classes, use \Drupal\Core\StringTranslation\StringTranslationTrait and $this->t() instead
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 17 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Controller/ContentElementController.php
-----------------------------------------------------------------------------------------
FOUND 2 ERRORS AFFECTING 2 LINES
-----------------------------------------------------------------------------------------
 36 | ERROR | [x] Expected 1 blank line after function; 0 found
 37 | ERROR | [x] The closing brace for the class must have an empty line before it
-----------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-----------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Controller/ContentHelpController.php
--------------------------------------------------------------------------------------
FOUND 1 ERROR AND 1 WARNING AFFECTING 2 LINES
--------------------------------------------------------------------------------------
 50 | WARNING | [ ] Line exceeds 80 characters; contains 82 characters
 55 | ERROR   | [x] Expected 1 space after "+="; 0 found
--------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
--------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/DependencyResolver/ImportQueueResolver.php
---------------------------------------------------------------------------------------------
FOUND 10 ERRORS AND 15 WARNINGS AFFECTING 18 LINES
---------------------------------------------------------------------------------------------
  11 | WARNING | [ ] The class short comment should describe what the class does and not simply repeat the class name
  16 | ERROR   | [x] There must be exactly one blank line before the tags in a doc comment
  22 | ERROR   | [x] There must be exactly one blank line before the tags in a doc comment
  28 | ERROR   | [x] There must be exactly one blank line before the tags in a doc comment
  97 | WARNING | [ ] Unused variable $ref_entity_type_id.
 116 | WARNING | [x] 'TODO: notice/log of what entity is missing.' should match the format '@todo Fix problem X here.'
 117 | WARNING | [x] 'TODO: should the import of the parent entity abort?' should match the format '@todo Fix problem X here.'
 125 | ERROR   | [ ] Missing parameter type
 127 | ERROR   | [ ] Missing parameter type
 131 | WARNING | [ ] Line exceeds 80 characters; contains 94 characters
 142 | WARNING | [ ] Unused variable $uuid.
 154 | WARNING | [x] 'TODO: else if Check the entity exists in the snapshot' should match the format '@todo Fix problem X here.'
 154 | WARNING | [x] There must be no blank line following an inline comment
 154 | WARNING | [ ] There must be no blank line following an inline comment
 154 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 156 | WARNING | [x] 'TODO: else if Check if the entity exist in the site.' should match the format '@todo Fix problem X here.'
 156 | WARNING | [x] There must be no blank line following an inline comment
 156 | WARNING | [ ] There must be no blank line following an inline comment
 158 | WARNING | [x] 'TODO: better notice about missing dependency' should match the format '@todo Fix problem X here.'
 159 | WARNING | [x] There must be no blank line following an inline comment
 159 | WARNING | [ ] There must be no blank line following an inline comment
 159 | ERROR   | [ ] Comment indentation error, expected only 1 spaces
 167 | ERROR   | [ ] Missing parameter type
 170 | ERROR   | [ ] Description for the @return value is missing
 175 | ERROR   | [x] Closing parenthesis of array declaration must be on a new line
---------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 13 MARKED SNIFF VIOLATIONS AUTOMATICALLY
---------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/DependencyResolver/ExportQueueResolver.php
--------------------------------------------------------------------------------------------
FOUND 5 ERRORS AND 3 WARNINGS AFFECTING 8 LINES
--------------------------------------------------------------------------------------------
  16 | ERROR   | [x] There must be exactly one blank line before the tags in a doc comment
  22 | ERROR   | [x] There must be exactly one blank line before the tags in a doc comment
  57 | WARNING | [ ] Unused variable $ref_entity_type_id.
  66 | WARNING | [ ] Unused variable $ref_entity_type_id.
  74 | WARNING | [ ] Unused variable $bundle.
  87 | ERROR   | [ ] Missing parameter type
  89 | ERROR   | [ ] Missing parameter type
 109 | ERROR   | [ ] Doc comment for parameter $normalized_entities does not match actual variable name <undefined>
--------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
--------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/DependencyResolver/ContentSyncResolverInterface.php
-----------------------------------------------------------------------------------------------------
FOUND 4 ERRORS AFFECTING 3 LINES
-----------------------------------------------------------------------------------------------------
 5 | ERROR | [x] Missing interface doc comment
 7 | ERROR | [x] Missing function doc comment
 7 | ERROR | [x] Expected 1 blank line after function; 0 found
 8 | ERROR | [x] The closing brace for the interface must have an empty line before it
-----------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 4 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-----------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Exporter/ContentExporterInterface.php
---------------------------------------------------------------------------------------
FOUND 7 ERRORS AFFECTING 6 LINES
---------------------------------------------------------------------------------------
  3 | ERROR | [x] There must be one blank line after the namespace declaration
  8 | ERROR | [x] Missing interface doc comment
 13 | ERROR | [ ] Missing parameter comment
 14 | ERROR | [ ] Missing parameter comment
 16 | ERROR | [ ] Description for the @return value is missing
 19 | ERROR | [x] Expected 1 newline at end of file; 0 found
 19 | ERROR | [x] The closing brace for the interface must have an empty line before it
---------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 4 MARKED SNIFF VIOLATIONS AUTOMATICALLY
---------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Exporter/ContentExporter.php
-------------------------------------------------------------------------------------
FOUND 24 ERRORS AND 5 WARNINGS AFFECTING 21 LINES
-------------------------------------------------------------------------------------
  9 | ERROR   | [x] Missing class doc comment
 11 | ERROR   | [ ] Missing member variable doc comment
 13 | ERROR   | [ ] Missing member variable doc comment
 15 | ERROR   | [ ] Missing member variable doc comment
 22 | ERROR   | [x] Expected 1 blank line after function; 2 found
 25 | ERROR   | [ ] Missing short description in doc comment
 33 | WARNING | [ ] Line exceeds 80 characters; contains 82 characters
 36 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 0
 36 | ERROR   | [x] 4 spaces found before inline comment; expected "// $return = [" but found "//    $return = ["
 37 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 0
 37 | ERROR   | [ ] Comment indentation error, expected only 4 spaces
 38 | WARNING | [ ] Line exceeds 80 characters; contains 91 characters
 38 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 0
 39 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 0
 40 | WARNING | [x] There must be no blank line following an inline comment
 40 | WARNING | [ ] There must be no blank line following an inline comment
 40 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 0
 42 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 47 | ERROR   | [x] There should be no white space after an opening "("
 47 | ERROR   | [x] There should be no white space before a closing ")"
 48 | ERROR   | [x] There should be no white space after an opening "("
 48 | ERROR   | [x] There should be no white space before a closing ")"
 51 | WARNING | [ ] Line exceeds 80 characters; contains 124 characters
 51 | ERROR   | [x] No space found before comment text; expected "// $normalized_data['_translations'][$c] =
    |         |     $contentExporter->exportEntity($object_translated, $serializer_context);" but found "//$normalized_data['_translations'][$c] =
    |         |     $contentExporter->exportEntity($object_translated, $serializer_context);"
 59 | ERROR   | [ ] Missing short description in doc comment
 60 | ERROR   | [ ] Description for the @return value is missing
 66 | ERROR   | [ ] Missing short description in doc comment
 67 | ERROR   | [ ] Description for the @return value is missing
 73 | ERROR   | [x] Expected 1 newline at end of file; 0 found
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 16 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Commands/ContentSyncCommands.php
-------------------------------------------------------------------------------------
FOUND 24 ERRORS AND 3 WARNINGS AFFECTING 21 LINES
-------------------------------------------------------------------------------------
  48 | ERROR   | [x] Expected "\Drupal\Core\Config\ConfigManagerInterface" but found "\Drupal\Core\Config\ConfigManagerInterface;" for @var tag in member
     |         |     variable comment
 262 | WARNING | [x] A comma should follow the last multiline array item. Found: FALSE
 262 | ERROR   | [x] There should be no white space before a closing "]"
 262 | ERROR   | [x] Closing parenthesis of array declaration must be on a new line
 264 | ERROR   | [x] No space found before comment text; expected "// Generate comparer with filters." but found "//Generate comparer with filters."
 280 | ERROR   | [x] Expected newline after closing brace
 281 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 10
 282 | ERROR   | [x] Expected newline after closing brace
 303 | ERROR   | [x] No space found before comment text; expected "// Show differences" but found "//Show differences"
 303 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 309 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 330 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 346 | ERROR   | [ ] Parameter tags must be grouped together in a doc comment
 367 | WARNING | [x] A comma should follow the last multiline array item. Found: FALSE
 367 | ERROR   | [x] There should be no white space before a closing "]"
 367 | ERROR   | [x] Closing parenthesis of array declaration must be on a new line
 395 | ERROR   | [x] Expected newline after closing brace
 396 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 10
 397 | ERROR   | [x] Expected newline after closing brace
 423 | ERROR   | [x] No space found before comment text; expected "// $storage_comparer->getTargetStorage($collection)->deleteAll();" but found
     |         |     "//$storage_comparer->getTargetStorage($collection)->deleteAll();"
 431 | ERROR   | [x] Case breaking statements must be followed by a single blank line
 435 | ERROR   | [x] No space found before comment text; expected "// $data = $storage_comparer->getSourceStorage($collection)->read($content);" but found
     |         |     "//$data = $storage_comparer->getSourceStorage($collection)->read($content);"
 436 | WARNING | [ ] Line exceeds 80 characters; contains 89 characters
 436 | ERROR   | [x] No space found before comment text; expected "// $storage_comparer->getTargetStorage($collection)->write($content, $data);" but found
     |         |     "//$storage_comparer->getTargetStorage($collection)->write($content, $data);"
 526 | ERROR   | [x] Separate the @param and @return sections by a blank line.
 529 | ERROR   | [ ] Type hint "array" missing for $options
 531 | ERROR   | [x] Inline control structures are not allowed
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 24 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/TimestampItemNormalizer.php
----------------------------------------------------------------------------------------
FOUND 12 ERRORS AND 2 WARNINGS AFFECTING 8 LINES
----------------------------------------------------------------------------------------
  5 | WARNING | [x] Unused use statement
  6 | WARNING | [x] Unused use statement
 16 | ERROR   | [x] Doc comment long description must end with a full stop
 33 | ERROR   | [x] Expected 1 space after FOREACH keyword; 0 found
 33 | ERROR   | [x] There should be no white space after an opening "("
 33 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 34 | ERROR   | [x] Expected 1 space after IF keyword; 0 found
 34 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 37 | ERROR   | [x] Expected one space after the comma, 0 found
 37 | ERROR   | [x] There should be no white space before a closing ")"
 38 | ERROR   | [x] Expected newline after closing brace
 38 | ERROR   | [x] Expected 1 space after ELSE keyword; 0 found
 45 | ERROR   | [x] Expected 1 newline at end of file; 0 found
 45 | ERROR   | [x] The closing brace for the class must have an empty line before it
----------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 14 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/LinkItemNormalizer.php
-------------------------------------------------------------------------------------
FOUND 14 ERRORS AND 6 WARNINGS AFFECTING 13 LINES
-------------------------------------------------------------------------------------
  26 | WARNING | [ ] Line exceeds 80 characters; contains 89 characters
  26 | WARNING | [ ] There must be no blank line following an inline comment
  26 | ERROR   | [x] No space found before comment text; expected "// protected $supportedInterfaceOrClass = 'Drupal\link\Plugin\Field\FieldType\LinkItem';"
     |         |     but found "//protected $supportedInterfaceOrClass = 'Drupal\link\Plugin\Field\FieldType\LinkItem';"
  26 | ERROR   | [x] Inline comments must start with a capital letter
  26 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  35 | ERROR   | [ ] Missing short description in doc comment
  40 | ERROR   | [ ] Parameter $entity_type_manager is not described in comment
  74 | WARNING | [ ] Line exceeds 80 characters; contains 81 characters
  77 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  80 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  83 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 127 | ERROR   | [x] Expected newline after closing brace
 127 | ERROR   | [x] Expected 1 space after ELSE keyword; 0 found
 139 | WARNING | [ ] Line exceeds 80 characters; contains 133 characters
 139 | WARNING | [x] 'TODO: change Error to Log/Warning - to avoid stoping the import of the rest of the entities.   ---> Same for throws above.' should
     |         |     match the format '@todo Fix problem X here.'
 140 | WARNING | [ ] Line exceeds 80 characters; contains 177 characters
 140 | ERROR   | [x] No space found before comment text; expected "// throw new InvalidArgumentException(sprintf('No "%s" entity found with UUID "%s" for
     |         |     field "%s".', $data['target_type'], $data['target_uuid'], $field_item->getName()));" but found "//throw new
     |         |     InvalidArgumentException(sprintf('No "%s" entity found with UUID "%s" for field "%s".', $data['target_type'], $data['target_uuid'],
     |         |     $field_item->getName()));"
 141 | ERROR   | [x] Language constructs must be followed by a single space; expected "return [" but found "return["
 145 | ERROR   | [x] Expected 1 blank line after function; 0 found
 146 | ERROR   | [x] The closing brace for the class must have an empty line before it
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 13 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/ParagraphEntityNormalizer.php
------------------------------------------------------------------------------------------
FOUND 19 ERRORS AFFECTING 16 LINES
------------------------------------------------------------------------------------------
  41 | ERROR | [ ] Missing parameter comment
  41 | ERROR | [x] Data types in @param tags need to be fully namespaced
  42 | ERROR | [ ] Missing parameter comment
  42 | ERROR | [x] Data types in @param tags need to be fully namespaced
  47 | ERROR | [x] Expected 1 blank line after function; 2 found
  54 | ERROR | [x] Expected 1 space after IF keyword; 0 found
  55 | ERROR | [x] There should be no white space before a closing ")"
  73 | ERROR | [x] Expected 1 space after closing parenthesis; found 0
  89 | ERROR | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  91 | ERROR | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  98 | ERROR | [x] Line indented incorrectly; expected 4 spaces, found 8
  98 | ERROR | [x] Expected 1 space after closing parenthesis; found 0
  99 | ERROR | [x] Line indented incorrectly; expected 6 spaces, found 10
 100 | ERROR | [x] Line indented incorrectly; expected 6 spaces, found 10
 101 | ERROR | [x] Line indented incorrectly; expected 6 spaces, found 10
 102 | ERROR | [x] Line indented incorrectly; expected 6 spaces, found 10
 103 | ERROR | [x] Line indented incorrectly; expected 4 spaces, found 8
 105 | ERROR | [x] Expected 1 blank line after function; 0 found
 106 | ERROR | [x] The closing brace for the class must have an empty line before it
------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 17 MARKED SNIFF VIOLATIONS AUTOMATICALLY
------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/UserEntityNormalizer.php
-------------------------------------------------------------------------------------
FOUND 2 ERRORS AFFECTING 2 LINES
-------------------------------------------------------------------------------------
 69 | ERROR | [x] Expected 1 blank line after function; 0 found
 70 | ERROR | [x] The closing brace for the class must have an empty line before it
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/EntityReferenceFieldItemNormalizer.php
-------------------------------------------------------------------------------------
FOUND 14 ERRORS AND 4 WARNINGS AFFECTING 15 LINES
-------------------------------------------------------------------------------------
  56 | ERROR   | [x] Array indentation error, expected 10 spaces but found 12
  57 | ERROR   | [x] Array indentation error, expected 10 spaces but found 12
  58 | ERROR   | [x] Array indentation error, expected 10 spaces but found 12
  64 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  68 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
  72 | WARNING | [x] 'TODO: Verify if the canonical url is necessary.' should match the format '@todo Fix problem X here.'
  73 | ERROR   | [ ] Comment indentation error, expected only 1 spaces
  78 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 10
  79 | ERROR   | [x] Line indented incorrectly; expected 8 spaces, found 10
  84 | ERROR   | [x] Line indented incorrectly; expected 10 spaces, found 12
 111 | ERROR   | [x] The first index in a multi-value array must be on a new line
 112 | ERROR   | [x] Array indentation error, expected 12 spaces but found 18
 112 | ERROR   | [x] Closing parenthesis of array declaration must be on a new line
 118 | WARNING | [ ] Line exceeds 80 characters; contains 133 characters
 118 | WARNING | [x] 'TODO: change Error to Log/Warning - to avoid stoping the import of the rest of the entities.   ---> Same for throws above.' should
     |         |     match the format '@todo Fix problem X here.'
 119 | WARNING | [ ] Line exceeds 80 characters; contains 177 characters
 119 | ERROR   | [x] No space found before comment text; expected "// throw new InvalidArgumentException(sprintf('No "%s" entity found with UUID "%s" for
     |         |     field "%s".', $data['target_type'], $data['target_uuid'], $field_item->getName()));" but found "//throw new
     |         |     InvalidArgumentException(sprintf('No "%s" entity found with UUID "%s" for field "%s".', $data['target_type'], $data['target_uuid'],
     |         |     $field_item->getName()));"
 120 | ERROR   | [x] Language constructs must be followed by a single space; expected "return [" but found "return["
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 15 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/ImageItemNormalizer.php
-------------------------------------------------------------------------------------------------
FOUND 5 ERRORS AFFECTING 5 LINES
-------------------------------------------------------------------------------------------------
  3 | ERROR | [x] There must be one blank line after the namespace declaration
  9 | ERROR | [x] Missing class doc comment
 22 | ERROR | [x] Expected 1 space after "="; 2 found
 24 | ERROR | [x] Expected 1 space after IF keyword; 0 found
 31 | ERROR | [x] Expected 1 newline at end of file; 0 found
-------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 5 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/FileEntityNormalizer.php
-------------------------------------------------------------------------------------
FOUND 17 ERRORS AND 5 WARNINGS AFFECTING 18 LINES
-------------------------------------------------------------------------------------
  41 | ERROR   | [ ] Parameter tags must be grouped together in a doc comment
  41 | ERROR   | [ ] Missing parameter comment
  43 | ERROR   | [ ] Parameter tags must be grouped together in a doc comment
  43 | ERROR   | [ ] Missing parameter comment
  61 | ERROR   | [x] Short array syntax must be used to define arrays
  76 | ERROR   | [x] Concat operator must be surrounded by a single space
  87 | WARNING | [x] A comma should follow the last multiline array item. Found: )
  88 | WARNING | [x] A comma should follow the last multiline array item. Found: ]
 116 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 117 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 118 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 119 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 120 | WARNING | [ ] Line exceeds 80 characters; contains 83 characters
 120 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 121 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 8
 122 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 123 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 124 | WARNING | [ ] Line exceeds 80 characters; contains 132 characters
 124 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 8
 125 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 134 | ERROR   | [x] Short array syntax must be used to define arrays
 146 | WARNING | [x] 'TODO: add a notice/log about it.' should match the format '@todo Fix problem X here.'
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 16 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/ContentEntityNormalizer.php
-------------------------------------------------------------------------------------------
FOUND 18 ERRORS AND 6 WARNINGS AFFECTING 21 LINES
-------------------------------------------------------------------------------------------
   5 | WARNING | [x] Unused use statement
  12 | WARNING | [x] Unused use statement
  13 | WARNING | [x] Unused use statement
  14 | WARNING | [x] Unused use statement
  24 | ERROR   | [ ] Missing short description in doc comment
  25 | ERROR   | [x] Data types in @var tags need to be fully namespaced
  38 | ERROR   | [ ] Missing parameter comment
  38 | ERROR   | [x] Data types in @param tags need to be fully namespaced
  71 | ERROR   | [x] Use null coalesce operator instead of ternary operator.
  71 | ERROR   | [x] Use null coalesce operator instead of ternary operator.
  78 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  91 | WARNING | [x] Inline @var declarations should use the /** */ delimiters
 102 | ERROR   | [ ] Missing short description in doc comment
 109 | ERROR   | [ ] Missing short description in doc comment
 112 | WARNING | [ ] Possible useless method overriding detected
 116 | ERROR   | [ ] Missing short description in doc comment
 117 | ERROR   | [ ] Missing parameter comment
 117 | ERROR   | [ ] Missing parameter type
 118 | ERROR   | [ ] Missing parameter comment
 120 | ERROR   | [ ] Description for the @return value is missing
 122 | ERROR   | [ ] Type hint "array" missing for $context
 129 | ERROR   | [ ] Missing short description in doc comment
 134 | ERROR   | [x] Expected 1 blank line after function; 0 found
 135 | ERROR   | [x] The closing brace for the class must have an empty line before it
-------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 12 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Normalizer/PathAliasEntityNormalizer.php
-------------------------------------------------------------------------------------------
FOUND 10 ERRORS AND 1 WARNING AFFECTING 9 LINES
-------------------------------------------------------------------------------------------
  42 | ERROR   | [ ] Missing parameter comment
  42 | ERROR   | [x] Data types in @param tags need to be fully namespaced
  43 | ERROR   | [ ] Missing parameter comment
  43 | ERROR   | [x] Data types in @param tags need to be fully namespaced
  48 | ERROR   | [x] Expected 1 blank line after function; 2 found
  90 | WARNING | [ ] Line exceeds 80 characters; contains 81 characters
  93 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
  96 | ERROR   | [x] Expected 1 space after closing parenthesis; found 0
 101 | ERROR   | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses
 114 | ERROR   | [x] Expected 1 blank line after function; 0 found
 115 | ERROR   | [x] The closing brace for the class must have an empty line before it
-------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 8 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/EventSubscriber/ContentSyncEvents.php
---------------------------------------------------------------------------------------
FOUND 2 ERRORS AND 1 WARNING AFFECTING 3 LINES
---------------------------------------------------------------------------------------
  7 | WARNING | [x] Unused use statement
  8 | ERROR   | [x] There must be one blank line after the last USE statement; 2 found;
 18 | ERROR   | [ ] Doc comment short description must be on a single line, further text should be a separate paragraph
---------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
---------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/ContentSyncHelpManager.php
-------------------------------------------------------------------------------------
FOUND 55 ERRORS AND 21 WARNINGS AFFECTING 64 LINES
-------------------------------------------------------------------------------------
  88 | ERROR   | [x] Expected 1 blank line before function; 2 found
 185 | ERROR   | [x] Expected 1 blank line after function; 2 found
 198 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 210 | ERROR   | [x] Array closing indentation error, expected 4 spaces but found 6
 213 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 219 | ERROR   | [x] Array closing indentation error, expected 4 spaces but found 6
 220 | ERROR   | [x] Whitespace found at end of line
 237 | ERROR   | [ ] The array declaration extends to column 155 (the limit is 80). The array content should be split up over multiple lines
 241 | ERROR   | [ ] The array declaration extends to column 157 (the limit is 80). The array content should be split up over multiple lines
 248 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 249 | WARNING | [ ] Line exceeds 80 characters; contains 170 characters
 249 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 252 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 253 | WARNING | [ ] Line exceeds 80 characters; contains 128 characters
 253 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 260 | WARNING | [x] A comma should follow the last multiline array item. Found: $links
 320 | ERROR   | [x] Expected 1 blank line after function; 2 found
 323 | ERROR   | [ ] Doc comment is empty
 325 | ERROR   | [ ] Doc comment is empty
 339 | ERROR   | [x] Whitespace found at end of line
 352 | ERROR   | [x] No space found before comment text; expected "// $build['content']['quote'] = [];" but found "//$build['content']['quote'] = [];"
 353 | ERROR   | [x] No space found before comment text; expected "// $build['content']['quote']['image'] = [" but found
     |         |     "//$build['content']['quote']['image'] = ["
 359 | ERROR   | [x] No space found before comment text; expected "// ];" but found "//];"
 360 | WARNING | [ ] Line exceeds 80 characters; contains 380 characters
 360 | WARNING | [x] There must be no blank line following an inline comment
 360 | WARNING | [ ] There must be no blank line following an inline comment
 360 | ERROR   | [x] No space found before comment text; expected "// $build['content']['quote']['content']['#markup'] = '<blockquote><strong>' .
     |         |     $this->t('It’s really the Drupal community and not so much the software that makes the Drupal project what it is. So fostering the
     |         |     Drupal community is actually more important than just managing the code base.') . '</strong><address>' . $this->t('- Dries Buytaert') .
     |         |     '</address></blockquote><hr/>';" but found "//$build['content']['quote']['content']['#markup'] = '<blockquote><strong>' .
     |         |     $this->t('It’s really the Drupal community and not so much the software that makes the Drupal project what it is. So fostering the
     |         |     Drupal community is actually more important than just managing the code base.') . '</strong><address>' . $this->t('- Dries Buytaert') .
     |         |     '</address></blockquote><hr/>';"
 367 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 368 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 369 | ERROR   | [x] Array closing indentation error, expected 4 spaces but found 6
 372 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 3
 373 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 374 | WARNING | [ ] Line exceeds 80 characters; contains 102 characters
 374 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 375 | WARNING | [ ] Line exceeds 80 characters; contains 81 characters
 375 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 376 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 385 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 386 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 387 | ERROR   | [x] Array closing indentation error, expected 4 spaces but found 6
 392 | WARNING | [ ] Avoid backslash escaping in translatable strings when possible, use "" quotes instead
 394 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 395 | ERROR   | [x] Array indentation error, expected 6 spaces but found 8
 396 | ERROR   | [x] Array closing indentation error, expected 4 spaces but found 6
 401 | WARNING | [ ] Line exceeds 80 characters; contains 111 characters
 402 | WARNING | [ ] Line exceeds 80 characters; contains 514 characters
 404 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 405 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 410 | WARNING | [ ] Line exceeds 80 characters; contains 134 characters
 411 | WARNING | [ ] Line exceeds 80 characters; contains 320 characters
 413 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 414 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 419 | WARNING | [ ] Line exceeds 80 characters; contains 118 characters
 421 | WARNING | [ ] Line exceeds 80 characters; contains 305 characters
 421 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 422 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 423 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 425 | WARNING | [ ] Line exceeds 80 characters; contains 86 characters
 427 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 428 | ERROR   | [x] Line indented incorrectly; expected 4 spaces, found 6
 430 | ERROR   | [x] Line indented incorrectly; expected 5 spaces, found 4
 448 | ERROR   | [x] Case breaking statements must be followed by a single blank line
 453 | WARNING | [ ] Code after the RETURN statement on line 448 cannot be executed
 453 | ERROR   | [x] Line indented incorrectly; expected 6 spaces, found 8
 456 | ERROR   | [x] Case breaking statements must be followed by a single blank line
 458 | WARNING | [ ] t() calls should be avoided in classes, use \Drupal\Core\StringTranslation\StringTranslationTrait and $this->t() instead
 460 | ERROR   | [ ] The array declaration extends to column 112 (the limit is 80). The array content should be split up over multiple lines
 460 | ERROR   | [ ] The array declaration extends to column 111 (the limit is 80). The array content should be split up over multiple lines
 463 | WARNING | [ ] Code after the RETURN statement on line 456 cannot be executed
 463 | ERROR   | [x] Line indented incorrectly; expected 6 spaces, found 8
 467 | ERROR   | [x] Case breaking statements must be followed by a single blank line
 468 | WARNING | [ ] Code after the RETURN statement on line 467 cannot be executed
 468 | ERROR   | [x] Line indented incorrectly; expected 6 spaces, found 8
 538 | ERROR   | [ ] Doc comment is empty
 540 | ERROR   | [ ] Doc comment is empty
 560 | WARNING | [ ] Avoid backslash escaping in translatable strings when possible, use "" quotes instead
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 49 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/Utility/ContentSyncDialogHelper.php
-------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
-------------------------------------------------------------------------------------
 26 | ERROR | The @see reference should not contain any additional text
-------------------------------------------------------------------------------------


FILE: /modules/contrib/content_sync/src/ContentSyncManager.php
-------------------------------------------------------------------------------------
FOUND 34 ERRORS AND 1 WARNING AFFECTING 27 LINES
-------------------------------------------------------------------------------------
  12 | ERROR   | [x] Missing class doc comment
  16 | ERROR   | [ ] Missing short description in doc comment
  21 | ERROR   | [ ] Missing short description in doc comment
  26 | ERROR   | [ ] Missing short description in doc comment
  31 | ERROR   | [ ] Missing short description in doc comment
  46 | ERROR   | [ ] Missing short description in doc comment
  47 | ERROR   | [ ] Description for the @return value is missing
  53 | ERROR   | [ ] Missing short description in doc comment
  54 | ERROR   | [ ] Description for the @return value is missing
  58 | ERROR   | [x] Expected 1 blank line after function; 2 found
  61 | ERROR   | [ ] Missing short description in doc comment
  62 | ERROR   | [ ] Missing parameter comment
  62 | ERROR   | [ ] Missing parameter type
  63 | ERROR   | [ ] Missing parameter comment
  63 | ERROR   | [ ] Missing parameter type
  65 | ERROR   | [ ] Description for the @return value is missing
  70 | ERROR   | [x] Inline control structures are not allowed
  72 | ERROR   | [x] list(...) is forbidden, use [...] instead.
  72 | WARNING | [ ] Unused variable $uuid.
  89 | ERROR   | [ ] Missing short description in doc comment
  89 | ERROR   | [ ] Parameter $decoded_entities is not described in comment
  89 | ERROR   | [ ] Parameter $visited is not described in comment
  90 | ERROR   | [ ] Missing parameter comment
  90 | ERROR   | [ ] Missing parameter type
  91 | ERROR   | [ ] Missing parameter comment
  91 | ERROR   | [ ] Missing parameter type
  93 | ERROR   | [ ] Description for the @return value is missing
 104 | ERROR   | [ ] Missing short description in doc comment
 105 | ERROR   | [ ] Description for the @return value is missing
 111 | ERROR   | [ ] Missing short description in doc comment
 112 | ERROR   | [ ] Description for the @return value is missing
 119 | ERROR   | [x] Doc comment short description must end with a full stop
 121 | ERROR   | [ ] Missing parameter comment
 121 | ERROR   | [ ] Missing parameter type
 123 | ERROR   | [ ] Description for the @return value is missing
-------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 5 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------

Time: 870ms; Memory: 16MB

Steps to reproduce

phpcs --standard=Drupal,DrupalPractice --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md,yml content_sync          

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

📌 Task
Status

Needs work

Version

3.0

Component

Code

Created by

🇮🇳India rassoni Bangalore

Live updates comments and jobs are added and updated live.
  • Coding standards

    It involves compliance with, or the content of coding standards. Requires broad community agreement.

Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @rassoni
  • First commit to issue fork.
  • 🇨🇦Canada imustakim Canada

    Working on this.

  • Status changed to Active almost 2 years ago
  • 🇮🇹Italy apaderno Brescia, 🇮🇹

    The MR is empty.

  • Assigned to arpitk
  • Status changed to Needs work almost 2 years ago
  • 🇮🇳India arpitk Indore

    Working on this.

  • First commit to issue fork.
  • Issue was unassigned.
  • 🇮🇹Italy apaderno Brescia, 🇮🇹
  • 🇮🇳India zkhan.aamir

    Hi,

    MR #8 applied successfully.

    Admin@DESKTOP-252TO6V MINGW64 ~/Desktop/projects/drupal/web/modules/contrib/content_sync (3.0.x)
    $ curl https://git.drupalcode.org/project/content_sync/-/merge_requests/9.diff | patch -p1
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    100  151k    0  151k    0     0   319k      0 --:--:-- --:--:-- --:--:--  320k
    patching file README.txt
    patching file content_sync.admin.inc
    patching file content_sync.install
    patching file content_sync.links.task.yml
    patching file content_sync.module
    patching file content_sync.routing.yml
    patching file includes/content_sync.theme.inc
    patching file src/Commands/ContentSyncCommands.php
    patching file src/Content/ContentDatabaseStorage.php
    patching file src/Content/ContentFileStorageFactory.php
    patching file src/Content/ContentStorageComparer.php
    patching file src/ContentSyncHelpManager.php
    patching file src/ContentSyncManager.php
    patching file src/ContentSyncManagerInterface.php
    patching file src/Controller/ContentController.php
    patching file src/Controller/ContentElementController.php
    patching file src/Controller/ContentHelpController.php
    patching file src/Controller/ContentLogController.php
    patching file src/DependencyResolver/ContentSyncResolverInterface.php
    patching file src/DependencyResolver/ExportQueueResolver.php
    patching file src/DependencyResolver/ImportQueueResolver.php
    patching file src/Element/ContentSyncMessage.php
    patching file src/Encoder/YamlEncoder.php
    patching file src/EventSubscriber/ContentSyncEvents.php
    patching file src/Exporter/ContentExporter.php
    patching file src/Exporter/ContentExporterInterface.php
    patching file src/Form/ContentExportForm.php
    patching file src/Form/ContentExportMultiple.php
    patching file src/Form/ContentExportTrait.php
    patching file src/Form/ContentImportForm.php
    patching file src/Form/ContentImportTrait.php
    patching file src/Form/ContentLogFilterForm.php
    patching file src/Form/ContentSettingsForm.php
    patching file src/Form/ContentSingleExportForm.php
    patching file src/Form/ContentSingleImportForm.php
    patching file src/Form/ContentSync.php
    patching file src/Importer/ContentImporter.php
    patching file src/Importer/ContentImporterInterface.php
    patching file src/Logger/ContentSyncLog.php
    patching file src/Normalizer/ContentEntityNormalizer.php
    patching file src/Normalizer/EntityReferenceFieldItemNormalizer.php
    patching file src/Normalizer/FileEntityNormalizer.php
    patching file src/Normalizer/ImageItemNormalizer.php
    patching file src/Normalizer/LinkItemNormalizer.php
    patching file src/Normalizer/ParagraphEntityNormalizer.php
    patching file src/Normalizer/PathAliasEntityNormalizer.php
    patching file src/Normalizer/TimestampItemNormalizer.php
    patching file src/Normalizer/UserEntityNormalizer.php
    patching file src/Plugin/Action/ExportNodes.php
    patching file src/Plugin/SyncNormalizerDecorator/IdsCleaner.php
    patching file src/Plugin/SyncNormalizerDecoratorBase.php
    patching file src/Plugin/SyncNormalizerDecoratorInterface.php
    patching file src/Plugin/SyncNormalizerDecoratorTrait.php
    patching file src/Utility/ContentSyncDialogHelper.php
    

    Still there are remaining errors.

    Admin@DESKTOP-252TO6V MINGW64 ~/Desktop/projects/drupal/web/modules/contrib
    $ phpcs --standard=Drupal,DrupalPractice --extensions=php,module,inc,install,test,profile,theme,info,txt,md,js,yml content_sync/
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Content\ContentFileStorageFactory.php
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
     18 | WARNING | The @see url 'https://api.drupal.org/api/drupal/core%21includes%21bootstrap.inc/constant/CONFIG_ACTIVE_DIRECTORY/8.9.x' does not match the standard:
        |         | http(s)://www.drupal.org/node/n or http(s)://www.drupal.org/project/aaa/issues/n
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Content\ContentStorageComparer.php
    --------------------------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    --------------------------------------------------------------------------------------------------------------------
     53 | WARNING | Unused variable $key.
    --------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\ContentSyncManager.php
    --------------------------------------------------------------------------------------------------------
    FOUND 25 ERRORS AND 1 WARNING AFFECTING 19 LINES
    --------------------------------------------------------------------------------------------------------
      57 | ERROR   | Missing short description in doc comment
      58 | ERROR   | Description for the @return value is missing
      64 | ERROR   | Missing short description in doc comment
      65 | ERROR   | Description for the @return value is missing
      71 | ERROR   | Missing short description in doc comment
      72 | ERROR   | Missing parameter comment
      72 | ERROR   | Missing parameter type
      73 | ERROR   | Missing parameter comment
      73 | ERROR   | Missing parameter type
      75 | ERROR   | Description for the @return value is missing
      84 | WARNING | Unused variable $uuid.
     101 | ERROR   | Missing short description in doc comment
     101 | ERROR   | Parameter $decoded_entities is not described in comment
     101 | ERROR   | Parameter $visited is not described in comment
     102 | ERROR   | Missing parameter comment
     102 | ERROR   | Missing parameter type
     103 | ERROR   | Missing parameter comment
     103 | ERROR   | Missing parameter type
     105 | ERROR   | Description for the @return value is missing
     116 | ERROR   | Missing short description in doc comment
     117 | ERROR   | Description for the @return value is missing
     123 | ERROR   | Missing short description in doc comment
     124 | ERROR   | Description for the @return value is missing
     133 | ERROR   | Missing parameter comment
     133 | ERROR   | Missing parameter type
     135 | ERROR   | Description for the @return value is missing
    --------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\ContentSyncManagerInterface.php
    -----------------------------------------------------------------------------------------------------------------
    FOUND 8 ERRORS AND 1 WARNING AFFECTING 9 LINES
    -----------------------------------------------------------------------------------------------------------------
      9 | WARNING | The class short comment should describe what the class does and not simply repeat the class name
     12 | ERROR   | Missing short description in doc comment
     13 | ERROR   | Description for the @return value is missing
     17 | ERROR   | Missing short description in doc comment
     18 | ERROR   | Description for the @return value is missing
     22 | ERROR   | Missing short description in doc comment
     23 | ERROR   | Description for the @return value is missing
     27 | ERROR   | Missing short description in doc comment
     28 | ERROR   | Description for the @return value is missing
    -----------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Controller\ContentLogController.php
    ---------------------------------------------------------------------------------------------------------------------
    FOUND 2 ERRORS AFFECTING 2 LINES
    ---------------------------------------------------------------------------------------------------------------------
     228 | ERROR | Comment indentation error, expected only 1 spaces
     315 | ERROR | Function return type is not void, but function is returning void here
    ---------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\DependencyResolver\ExportQueueResolver.php
    ----------------------------------------------------------------------------------------------------------------------------
    FOUND 2 ERRORS AND 3 WARNINGS AFFECTING 5 LINES
    ----------------------------------------------------------------------------------------------------------------------------
     59 | WARNING | Unused variable $ref_entity_type_id.
     68 | WARNING | Unused variable $ref_entity_type_id.
     76 | WARNING | Unused variable $bundle.
     89 | ERROR   | Missing parameter type
     91 | ERROR   | Missing parameter type
    ----------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\DependencyResolver\ImportQueueResolver.php
    ----------------------------------------------------------------------------------------------------------------------------
    FOUND 3 ERRORS AND 2 WARNINGS AFFECTING 5 LINES
    ----------------------------------------------------------------------------------------------------------------------------
     100 | WARNING | Unused variable $ref_entity_type_id.
     128 | ERROR   | Missing parameter type
     130 | ERROR   | Missing parameter type
     146 | WARNING | Unused variable $uuid.
     168 | ERROR   | Missing parameter type
    ----------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Encoder\YamlEncoder.php
    -----------------------------------------------------------------------------------------------------------------
    FOUND 5 ERRORS AND 1 WARNING AFFECTING 6 LINES
    -----------------------------------------------------------------------------------------------------------------
     13 | WARNING | The class short comment should describe what the class does and not simply repeat the class name
     23 | ERROR   | Missing member variable doc comment
     32 | ERROR   | Doc comment is empty
     39 | ERROR   | Doc comment is empty
     46 | ERROR   | Doc comment is empty
     53 | ERROR   | Doc comment is empty
    -----------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Exporter\ContentExporter.php
    --------------------------------------------------------------------------------------------------------------
    FOUND 7 ERRORS AFFECTING 7 LINES
    --------------------------------------------------------------------------------------------------------------
     14 | ERROR | Missing member variable doc comment
     16 | ERROR | Missing member variable doc comment
     18 | ERROR | Missing member variable doc comment
     64 | ERROR | Missing short description in doc comment
     65 | ERROR | Description for the @return value is missing
     71 | ERROR | Missing short description in doc comment
     72 | ERROR | Description for the @return value is missing
    --------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Exporter\ContentExporterInterface.php
    -----------------------------------------------------------------------------------------------------------------------
    FOUND 3 ERRORS AFFECTING 3 LINES
    -----------------------------------------------------------------------------------------------------------------------
     15 | ERROR | Missing parameter comment
     16 | ERROR | Missing parameter comment
     18 | ERROR | Description for the @return value is missing
    -----------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentExportForm.php
    ------------------------------------------------------------------------------------------------------------
    FOUND 8 ERRORS AFFECTING 8 LINES
    ------------------------------------------------------------------------------------------------------------
      21 | ERROR | Missing short description in doc comment
      26 | ERROR | Missing short description in doc comment
      31 | ERROR | Missing short description in doc comment
      46 | ERROR | Doc comment is empty
     108 | ERROR | Doc comment is empty
     136 | ERROR | Missing short description in doc comment
     143 | ERROR | Missing short description in doc comment
     150 | ERROR | Missing short description in doc comment
    ------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentExportMultiple.php
    ----------------------------------------------------------------------------------------------------------------
    FOUND 5 ERRORS AFFECTING 5 LINES
    ----------------------------------------------------------------------------------------------------------------
     38 | ERROR | Missing short description in doc comment
     43 | ERROR | Missing short description in doc comment
     48 | ERROR | Missing short description in doc comment
     53 | ERROR | Missing member variable doc comment
     62 | ERROR | Parameter $formats is not described in comment
    ----------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentExportTrait.php
    ----------------------------------------------------------------------------------------------------------------------------------------
    FOUND 26 ERRORS AND 4 WARNINGS AFFECTING 27 LINES
    ----------------------------------------------------------------------------------------------------------------------------------------
      17 | ERROR   | Missing short description in doc comment
      22 | ERROR   | Missing short description in doc comment
      23 | ERROR   | Missing parameter comment
      23 | ERROR   | Missing parameter type
      25 | ERROR   | Missing parameter type
      40 | ERROR   | Description for the @return value is missing
      56 | ERROR   | The array declaration extends to column 81 (the limit is 80). The array content should be split up over multiple lines
      58 | ERROR   | The array declaration extends to column 94 (the limit is 80). The array content should be split up over multiple lines
      58 | ERROR   | The array declaration extends to column 93 (the limit is 80). The array content should be split up over multiple lines
      80 | ERROR   | Parameter $entities is not described in comment
      83 | ERROR   | Missing parameter type
      85 | ERROR   | Missing parameter comment
      85 | ERROR   | Missing parameter type
      89 | ERROR   | Arguments with default values must be at the end of the argument list
     179 | WARNING | Unused variable $file.
     183 | WARNING | Unused variable $cache.
     215 | ERROR   | Parameter $serializer_context is not described in comment
     217 | ERROR   | Doc comment short description must be on a single line, further text should be a separate paragraph
     219 | ERROR   | Missing parameter type
     224 | ERROR   | Public method name "ContentExportTrait::generateSiteUUIDFile" is not in lowerCamel format
     246 | WARNING | Unused variable $file.
     269 | WARNING | Line exceeds 80 characters; contains 90 characters
     307 | ERROR   | Doc comment is empty
     317 | ERROR   | Doc comment is empty
     324 | ERROR   | Missing short description in doc comment
     325 | ERROR   | Description for the @return value is missing
     329 | ERROR   | Missing short description in doc comment
     330 | ERROR   | Description for the @return value is missing
     334 | ERROR   | Missing short description in doc comment
     335 | ERROR   | Description for the @return value is missing
    ----------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentImportForm.php
    --------------------------------------------------------------------------------------------------------------------------------------
    FOUND 3 ERRORS AFFECTING 3 LINES
    --------------------------------------------------------------------------------------------------------------------------------------
     28 | ERROR | The array declaration extends to column 144 (the limit is 80). The array content should be split up over multiple lines
     81 | ERROR | The array declaration extends to column 195 (the limit is 80). The array content should be split up over multiple lines
     93 | ERROR | Invalid function name, expected empty_directory but found emptyDirectory
    --------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentImportTrait.php
    ----------------------------------------------------------------------------------------------------------------------------------------
    FOUND 20 ERRORS AND 4 WARNINGS AFFECTING 18 LINES
    ----------------------------------------------------------------------------------------------------------------------------------------
      12 | ERROR   | Missing short description in doc comment
      13 | ERROR   | Missing parameter comment
      13 | ERROR   | Missing parameter type
      15 | ERROR   | Missing parameter comment
      15 | ERROR   | Missing parameter type
      17 | ERROR   | Missing parameter type
      22 | ERROR   | Description for the @return value is missing
      27 | ERROR   | The array declaration extends to column 89 (the limit is 80). The array content should be split up over multiple lines
      27 | ERROR   | The array declaration extends to column 88 (the limit is 80). The array content should be split up over multiple lines
      28 | ERROR   | The array declaration extends to column 85 (the limit is 80). The array content should be split up over multiple lines
      28 | ERROR   | The array declaration extends to column 84 (the limit is 80). The array content should be split up over multiple lines
      40 | WARNING | Line exceeds 80 characters; contains 91 characters
      42 | ERROR   | Missing parameter comment
      42 | ERROR   | Missing parameter type
      43 | ERROR   | Missing parameter comment
      47 | ERROR   | Arguments with default values must be at the end of the argument list
      74 | WARNING | Unused variable $cache.
     100 | ERROR   | Parameter $content_to_delete is not described in comment
     101 | WARNING | Line exceeds 80 characters; contains 91 characters
     103 | ERROR   | Missing parameter comment
     103 | ERROR   | Missing parameter type
     104 | ERROR   | Missing parameter comment
     108 | ERROR   | Arguments with default values must be at the end of the argument list
     151 | WARNING | Unused variable $cache.
    ----------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentSettingsForm.php
    --------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    --------------------------------------------------------------------------------------------------------------
     8 | ERROR | Doc comment is empty
    --------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentSingleExportForm.php
    -----------------------------------------------------------------------------------------------------------------------------------------
    FOUND 7 ERRORS AND 1 WARNING AFFECTING 6 LINES
    -----------------------------------------------------------------------------------------------------------------------------------------
      33 | ERROR   | Missing short description in doc comment
      41 | ERROR   | Missing parameter comment
      43 | ERROR   | Parameter tags must be grouped together in a doc comment
      43 | ERROR   | Missing parameter comment
      45 | ERROR   | Parameter tags must be grouped together in a doc comment
      45 | ERROR   | Missing parameter comment
     119 | WARNING | Line exceeds 80 characters; contains 87 characters
     151 | ERROR   | The array declaration extends to column 111 (the limit is 80). The array content should be split up over multiple lines
    -----------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentSingleImportForm.php
    ------------------------------------------------------------------------------------------------------------------
    FOUND 3 ERRORS AFFECTING 3 LINES
    ------------------------------------------------------------------------------------------------------------------
     17 | ERROR | Missing short description in doc comment
     22 | ERROR | Missing short description in doc comment
     35 | ERROR | Doc comment is empty
    ------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Form\ContentSync.php
    ------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AND 2 WARNINGS AFFECTING 3 LINES
    ------------------------------------------------------------------------------------------------------
      43 | ERROR   | Missing short description in doc comment
     123 | WARNING | Unused variable $source_list.
     224 | WARNING | Unused variable $collection.
    ------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Importer\ContentImporter.php
    --------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    --------------------------------------------------------------------------------------------------------------
     186 | ERROR | Missing parameter type
    --------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Importer\ContentImporterInterface.php
    -----------------------------------------------------------------------------------------------------------------------
    FOUND 8 ERRORS AFFECTING 6 LINES
    -----------------------------------------------------------------------------------------------------------------------
      5 | ERROR | Doc comment is empty
     10 | ERROR | Missing short description in doc comment
     11 | ERROR | Missing parameter comment
     11 | ERROR | Missing parameter type
     12 | ERROR | Missing parameter comment
     12 | ERROR | Missing parameter type
     13 | ERROR | Missing parameter comment
     15 | ERROR | Description for the @return value is missing
    -----------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Normalizer\ContentEntityNormalizer.php
    ------------------------------------------------------------------------------------------------------------------------
    FOUND 7 ERRORS AND 1 WARNING AFFECTING 7 LINES
    ------------------------------------------------------------------------------------------------------------------------
      20 | ERROR   | Missing short description in doc comment
      34 | ERROR   | Missing parameter comment
     108 | WARNING | Possible useless method overriding detected
     112 | ERROR   | Missing short description in doc comment
     113 | ERROR   | Missing parameter comment
     113 | ERROR   | Missing parameter type
     114 | ERROR   | Missing parameter comment
     116 | ERROR   | Description for the @return value is missing
    ------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Normalizer\EntityReferenceFieldItemNormalizer.php
    -----------------------------------------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -----------------------------------------------------------------------------------------------------------------------------------
     121 | WARNING | Line exceeds 80 characters; contains 178 characters
    -----------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Normalizer\FileEntityNormalizer.php
    ---------------------------------------------------------------------------------------------------------------------
    FOUND 4 ERRORS AND 2 WARNINGS AFFECTING 4 LINES
    ---------------------------------------------------------------------------------------------------------------------
      41 | ERROR   | Parameter tags must be grouped together in a doc comment
      41 | ERROR   | Missing parameter comment
      43 | ERROR   | Parameter tags must be grouped together in a doc comment
      43 | ERROR   | Missing parameter comment
     120 | WARNING | Line exceeds 80 characters; contains 81 characters
     124 | WARNING | Line exceeds 80 characters; contains 128 characters
    ---------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Normalizer\ImageItemNormalizer.php
    --------------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    --------------------------------------------------------------------------------------------------------------------
     8 | ERROR | Doc comment is empty
    --------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Normalizer\LinkItemNormalizer.php
    -------------------------------------------------------------------------------------------------------------------
    FOUND 2 ERRORS AND 3 WARNINGS AFFECTING 5 LINES
    -------------------------------------------------------------------------------------------------------------------
      26 | WARNING | Line exceeds 80 characters; contains 91 characters
      34 | ERROR   | Missing short description in doc comment
      39 | ERROR   | Parameter $entity_type_manager is not described in comment
      73 | WARNING | Line exceeds 80 characters; contains 81 characters
     140 | WARNING | Line exceeds 80 characters; contains 178 characters
    -------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Normalizer\ParagraphEntityNormalizer.php
    --------------------------------------------------------------------------------------------------------------------------
    FOUND 2 ERRORS AFFECTING 2 LINES
    --------------------------------------------------------------------------------------------------------------------------
     41 | ERROR | Missing parameter comment
     42 | ERROR | Missing parameter comment
    --------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Normalizer\PathAliasEntityNormalizer.php
    --------------------------------------------------------------------------------------------------------------------------
    FOUND 2 ERRORS AND 1 WARNING AFFECTING 3 LINES
    --------------------------------------------------------------------------------------------------------------------------
     42 | ERROR   | Missing parameter comment
     43 | ERROR   | Missing parameter comment
     89 | WARNING | Line exceeds 80 characters; contains 81 characters
    --------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Plugin\SyncNormalizerDecorator\IdsCleaner.php
    -------------------------------------------------------------------------------------------------------------------------------
    FOUND 13 ERRORS AFFECTING 10 LINES
    -------------------------------------------------------------------------------------------------------------------------------
      97 | ERROR | Missing parameter comment
      98 | ERROR | Missing parameter comment
      99 | ERROR | Missing parameter comment
      99 | ERROR | Missing parameter type
     100 | ERROR | Missing parameter comment
     109 | ERROR | Missing parameter comment
     109 | ERROR | Missing parameter type
     113 | ERROR | Description for the @return value is missing
     152 | ERROR | Missing parameter comment
     153 | ERROR | Missing parameter comment
     153 | ERROR | Missing parameter type
     154 | ERROR | Missing parameter comment
     156 | ERROR | Description for the @return value is missing
    -------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\Users\Admin\Desktop\projects\drupal\web\modules\contrib\content_sync\src\Plugin\SyncNormalizerDecoratorTrait.php
    -------------------------------------------------------------------------------------------------------------------------
    FOUND 6 ERRORS AFFECTING 6 LINES
    -------------------------------------------------------------------------------------------------------------------------
      7 | ERROR | Doc comment is empty
     12 | ERROR | Doc comment is empty
     28 | ERROR | Doc comment is empty
     40 | ERROR | Doc comment is empty
     52 | ERROR | Missing short description in doc comment
     53 | ERROR | Description for the @return value is missing
    -------------------------------------------------------------------------------------------------------------------------
    
    Time: 1.38 secs; Memory: 14MB
    
  • Assigned to shruu_rao
  • Remaining issues

    FILE: C:\content_sync\src\Content\ContentFileStorageFactory.php
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
     18 | WARNING | The @see url 'https://api.drupal.org/api/drupal/core%21includes%21bootstrap.inc/constant/CONFIG_ACTIVE_DIRECTORY/8.9.x' does not match the standard:
        |         | http(s)://www.drupal.org/node/n or http(s)://www.drupal.org/project/aaa/issues/n
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Content\ContentStorageComparer.php
    -------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -------------------------------------------------------------------------
     53 | WARNING | Unused variable $key.
    -------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\ContentSyncManager.php
    ----------------------------------------------------------------------
    FOUND 0 ERRORS AND 2 WARNINGS AFFECTING 2 LINES
    ----------------------------------------------------------------------
      95 | WARNING | Unused variable $uuid.
     113 | WARNING | Line exceeds 80 characters; contains 87 characters
    ----------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Controller\ContentLogController.php
    -------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    -------------------------------------------------------------------------------------
     315 | ERROR | Function return type is not void, but function is returning void here
    -------------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\DependencyResolver\ExportQueueResolver.php
    ---------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 3 WARNINGS AFFECTING 3 LINES
    ---------------------------------------------------------------------------------
     59 | WARNING | Unused variable $ref_entity_type_id.
     68 | WARNING | Unused variable $ref_entity_type_id.
     76 | WARNING | Unused variable $bundle.
    ---------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\DependencyResolver\ImportQueueResolver.php
    ---------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 2 WARNINGS AFFECTING 2 LINES
    ---------------------------------------------------------------------------------
     100 | WARNING | Unused variable $ref_entity_type_id.
     146 | WARNING | Unused variable $uuid.
    ---------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Form\ContentExportMultiple.php
    ----------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    ----------------------------------------------------------------------
     73 | ERROR | Parameter $formats is not described in comment
    ----------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Form\ContentExportTrait.php
    ----------------------------------------------------------------------------------------------------------------------------------------
    FOUND 12 ERRORS AND 4 WARNINGS AFFECTING 15 LINES
    ----------------------------------------------------------------------------------------------------------------------------------------
      27 | ERROR   | Missing parameter type
      29 | ERROR   | Missing parameter type
      61 | ERROR   | The array declaration extends to column 81 (the limit is 80). The array content should be split up over multiple lines
      63 | ERROR   | The array declaration extends to column 94 (the limit is 80). The array content should be split up over multiple lines
      63 | ERROR   | The array declaration extends to column 93 (the limit is 80). The array content should be split up over multiple lines
      88 | ERROR   | Missing parameter type
      90 | ERROR   | Missing parameter type
      92 | ERROR   | Missing parameter type
      97 | ERROR   | Arguments with default values must be at the end of the argument list
     187 | WARNING | Unused variable $file.
     191 | WARNING | Unused variable $cache.
     223 | ERROR   | Parameter $serializer_context is not described in comment
     226 | ERROR   | Missing parameter type
     231 | ERROR   | Public method name "ContentExportTrait::generateSiteUUIDFile" is not in lowerCamel format
     253 | WARNING | Unused variable $file.
     276 | WARNING | Line exceeds 80 characters; contains 90 characters
    ----------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Form\ContentImportForm.php
    --------------------------------------------------------------------------------------------------------------------------------------
    FOUND 3 ERRORS AFFECTING 3 LINES
    --------------------------------------------------------------------------------------------------------------------------------------
     28 | ERROR | The array declaration extends to column 144 (the limit is 80). The array content should be split up over multiple lines
     81 | ERROR | The array declaration extends to column 195 (the limit is 80). The array content should be split up over multiple lines
     93 | ERROR | Invalid function name, expected empty_directory but found emptyDirectory
    --------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Form\ContentImportTrait.php
    ----------------------------------------------------------------------------------------------------------------------------------------
    FOUND 6 ERRORS AND 4 WARNINGS AFFECTING 8 LINES
    ----------------------------------------------------------------------------------------------------------------------------------------
      30 | ERROR   | The array declaration extends to column 89 (the limit is 80). The array content should be split up over multiple lines
      30 | ERROR   | The array declaration extends to column 88 (the limit is 80). The array content should be split up over multiple lines
      31 | ERROR   | The array declaration extends to column 85 (the limit is 80). The array content should be split up over multiple lines
      31 | ERROR   | The array declaration extends to column 84 (the limit is 80). The array content should be split up over multiple lines
      43 | WARNING | Line exceeds 80 characters; contains 91 characters
      52 | ERROR   | Arguments with default values must be at the end of the argument list
      79 | WARNING | Unused variable $cache.
     106 | WARNING | Line exceeds 80 characters; contains 91 characters
     115 | ERROR   | Arguments with default values must be at the end of the argument list
     158 | WARNING | Unused variable $cache.
    ----------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Form\ContentSingleExportForm.php
    -----------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -----------------------------------------------------------------------
     122 | WARNING | Line exceeds 80 characters; contains 87 characters
    -----------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Form\ContentSync.php
    ----------------------------------------------------------------------
    FOUND 0 ERRORS AND 2 WARNINGS AFFECTING 2 LINES
    ----------------------------------------------------------------------
     125 | WARNING | Unused variable $source_list.
     226 | WARNING | Unused variable $collection.
    ----------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Importer\ContentImporter.php
    ----------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    ----------------------------------------------------------------------
     186 | ERROR | Missing parameter type
    ----------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Importer\ContentImporterInterface.php
    ----------------------------------------------------------------------------
    FOUND 2 ERRORS AFFECTING 2 LINES
    ----------------------------------------------------------------------------
     13 | ERROR | Missing parameter type
     15 | ERROR | Missing parameter type
    ----------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Normalizer\ContentEntityNormalizer.php
    -----------------------------------------------------------------------------
    FOUND 1 ERROR AND 1 WARNING AFFECTING 2 LINES
    -----------------------------------------------------------------------------
     111 | WARNING | Possible useless method overriding detected
     118 | ERROR   | Missing parameter type
    -----------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Normalizer\EntityReferenceFieldItemNormalizer.php
    ----------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    ----------------------------------------------------------------------------------------
     121 | WARNING | Line exceeds 80 characters; contains 178 characters
    ----------------------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Normalizer\FileEntityNormalizer.php
    --------------------------------------------------------------------------
    FOUND 0 ERRORS AND 2 WARNINGS AFFECTING 2 LINES
    --------------------------------------------------------------------------
     120 | WARNING | Line exceeds 80 characters; contains 81 characters
     124 | WARNING | Line exceeds 80 characters; contains 128 characters
    --------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Normalizer\LinkItemNormalizer.php
    ----------------------------------------------------------------------------
    FOUND 1 ERROR AND 3 WARNINGS AFFECTING 4 LINES
    ----------------------------------------------------------------------------
      26 | WARNING | Line exceeds 80 characters; contains 91 characters
      41 | ERROR   | Parameter $entity_type_manager is not described in comment
      75 | WARNING | Line exceeds 80 characters; contains 81 characters
     142 | WARNING | Line exceeds 80 characters; contains 178 characters
    ----------------------------------------------------------------------------
    
    
    FILE: C:\content_sync\src\Normalizer\PathAliasEntityNormalizer.php
    -------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -------------------------------------------------------------------------------
     91 | WARNING | Line exceeds 80 characters; contains 81 characters
    -------------------------------------------------------------------------------
    
  • Issue was unassigned.
  • First commit to issue fork.
  • First commit to issue fork.
  • 🇮🇳India zkhan.aamir

    Issue summary updated.

  • 🇮🇳India dev16.addweb

    silvi.addweb made their first commit to this issue’s fork.

  • Pipeline finished with Failed
    10 months ago
    Total: 42s
    #199196
  • 🇵🇭Philippines cleavinjosh

    Hi @silvi.addweb,

    I applied MR!9 and it was applied smoothly. However, I still encountered some issues after I ran phpcs --standard=Drupal,DrupalPractice --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md,yml.

    ➜  content_sync git:(3.0.x) curl https://git.drupalcode.org/project/content_sync/-/merge_requests/9.diff | patch -p1
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
    100  182k    0  182k    0     0   393k      0 --:--:-- --:--:-- --:--:--  393k
    patching file README.txt
    patching file content_sync.admin.inc
    patching file content_sync.install
    patching file content_sync.links.task.yml
    patching file content_sync.module
    patching file content_sync.routing.yml
    patching file includes/content_sync.theme.inc
    patching file js/content_sync.element.message.js
    patching file src/Commands/ContentSyncCommands.php
    patching file src/Content/ContentDatabaseStorage.php
    patching file src/Content/ContentFileStorageFactory.php
    patching file src/Content/ContentStorageComparer.php
    patching file src/ContentSyncHelpManager.php
    patching file src/ContentSyncManager.php
    patching file src/ContentSyncManagerInterface.php
    patching file src/Controller/ContentController.php
    patching file src/Controller/ContentElementController.php
    patching file src/Controller/ContentHelpController.php
    patching file src/Controller/ContentLogController.php
    patching file src/DependencyResolver/ContentSyncResolverInterface.php
    patching file src/DependencyResolver/ExportQueueResolver.php
    patching file src/DependencyResolver/ImportQueueResolver.php
    patching file src/Element/ContentSyncMessage.php
    patching file src/Encoder/YamlEncoder.php
    patching file src/EventSubscriber/ContentSyncEvents.php
    patching file src/Exporter/ContentExporter.php
    patching file src/Exporter/ContentExporterInterface.php
    patching file src/Form/ContentExportForm.php
    patching file src/Form/ContentExportMultiple.php
    patching file src/Form/ContentExportTrait.php
    patching file src/Form/ContentImportForm.php
    patching file src/Form/ContentImportTrait.php
    patching file src/Form/ContentLogFilterForm.php
    patching file src/Form/ContentSettingsForm.php
    patching file src/Form/ContentSingleExportForm.php
    patching file src/Form/ContentSingleImportForm.php
    patching file src/Form/ContentSync.php
    patching file src/Importer/ContentImporter.php
    patching file src/Importer/ContentImporterInterface.php
    patching file src/Logger/ContentSyncLog.php
    patching file src/Normalizer/ContentEntityNormalizer.php
    patching file src/Normalizer/EntityReferenceFieldItemNormalizer.php
    patching file src/Normalizer/FileEntityNormalizer.php
    patching file src/Normalizer/ImageItemNormalizer.php
    patching file src/Normalizer/LinkItemNormalizer.php
    patching file src/Normalizer/ParagraphEntityNormalizer.php
    patching file src/Normalizer/PathAliasEntityNormalizer.php
    patching file src/Normalizer/TimestampItemNormalizer.php
    patching file src/Normalizer/UserEntityNormalizer.php
    patching file src/Plugin/Action/ExportNodes.php
    patching file src/Plugin/SyncNormalizerDecorator/IdsCleaner.php
    patching file src/Plugin/SyncNormalizerDecoratorBase.php
    patching file src/Plugin/SyncNormalizerDecoratorInterface.php
    patching file src/Plugin/SyncNormalizerDecoratorManager.php
    patching file src/Plugin/SyncNormalizerDecoratorTrait.php
    patching file src/Utility/ContentSyncDialogHelper.php
    ➜  content_sync git:(3.0.x) ✗ ..
    ➜  contrib phpcs --standard=Drupal,DrupalPractice --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md,yml content_sync
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Form/ContentImportTrait.php
    -----------------------------------------------------------------------------------------------------------------
    FOUND 5 ERRORS AND 1 WARNING AFFECTING 6 LINES
    -----------------------------------------------------------------------------------------------------------------
      49 | ERROR   | Doc comment for parameter $serializer_context does not match actual variable name <undefined>
      52 | ERROR   | Arguments with default values must be at the end of the argument list
      80 | ERROR   | Comment indentation error, expected only 1 spaces
     114 | ERROR   | Doc comment for parameter $serializer_context does not match actual variable name <undefined>
     117 | ERROR   | Arguments with default values must be at the end of the argument list
     160 | WARNING | Unused variable $cache.
    -----------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Form/ContentImportForm.php
    ----------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    ----------------------------------------------------------------------------------------------------------------
     103 | ERROR | Invalid function name, expected empty_directory but found emptyDirectory
    ----------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Form/ContentExportTrait.php
    -----------------------------------------------------------------------------------------------------------------
    FOUND 3 ERRORS AFFECTING 3 LINES
    -----------------------------------------------------------------------------------------------------------------
      92 | ERROR | Doc comment for parameter $serializer_context does not match actual variable name <undefined>
      95 | ERROR | Arguments with default values must be at the end of the argument list
     226 | ERROR | Public method name "ContentExportTrait::generateSiteUUIDFile" is not in lowerCamel format
    -----------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Importer/ContentImporterInterface.php
    ---------------------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    ---------------------------------------------------------------------------------------------------------------------------
     15 | ERROR | Doc comment for parameter $entity_type_id does not match actual variable name $context
    ---------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Plugin/SyncNormalizerDecorator/IdsCleaner.php
    -----------------------------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    -----------------------------------------------------------------------------------------------------------------------------------
     81 | ERROR | [x] Multi-line function declarations must have a trailing comma after the last parameter
    -----------------------------------------------------------------------------------------------------------------------------------
    PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
    -----------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Content/ContentFileStorageFactory.php
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
     18 | WARNING | The @see url 'https://api.drupal.org/api/drupal/core%21includes%21bootstrap.inc/constant/CONFIG_ACTIVE_DIRECTORY/8.9.x' does not match the standard:
        |         | http(s)://www.drupal.org/node/n or http(s)://www.drupal.org/project/aaa/issues/n
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Commands/ContentSyncCommands.php
    ----------------------------------------------------------------------------------------------------------------------
    FOUND 2 ERRORS AFFECTING 2 LINES
    ----------------------------------------------------------------------------------------------------------------------
     265 | ERROR | [x] Multi-line function declarations must have a trailing comma after the last parameter
     375 | ERROR | [x] Multi-line function declarations must have a trailing comma after the last parameter
    ----------------------------------------------------------------------------------------------------------------------
    PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
    ----------------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Normalizer/FileEntityNormalizer.php
    -------------------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    -------------------------------------------------------------------------------------------------------------------------
     50 | ERROR | [x] Multi-line function declarations must have a trailing comma after the last parameter
    -------------------------------------------------------------------------------------------------------------------------
    PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
    -------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Normalizer/ContentEntityNormalizer.php
    ----------------------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AND 1 WARNING AFFECTING 2 LINES
    ----------------------------------------------------------------------------------------------------------------------------
     111 | WARNING | Possible useless method overriding detected
     118 | ERROR   | Missing parameter type
    ----------------------------------------------------------------------------------------------------------------------------
    
    Time: 1.95 secs; Memory: 14MB
    
    ➜  contrib

    Thank you.

  • Pipeline finished with Failed
    9 months ago
    Total: 41s
    #227561
  • Status changed to Needs review 9 months ago
  • 🇵🇭Philippines cleavinjosh

    Hi,

    I fixed some of the phpcs issues. These are the remaining issues:

    ➜  contrib phpcs --standard=Drupal,DrupalPractice --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md,yml content_sync
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Form/ContentImportTrait.php
    -----------------------------------------------------------------------------------------------------------------
    FOUND 5 ERRORS AND 1 WARNING AFFECTING 6 LINES
    -----------------------------------------------------------------------------------------------------------------
      49 | ERROR   | Doc comment for parameter $serializer_context does not match actual variable name <undefined>
      52 | ERROR   | Arguments with default values must be at the end of the argument list
      80 | ERROR   | Comment indentation error, expected only 1 spaces
     114 | ERROR   | Doc comment for parameter $serializer_context does not match actual variable name <undefined>
     117 | ERROR   | Arguments with default values must be at the end of the argument list
     160 | WARNING | Unused variable $cache.
    -----------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Form/ContentExportTrait.php
    -----------------------------------------------------------------------------------------------------------------
    FOUND 3 ERRORS AFFECTING 3 LINES
    -----------------------------------------------------------------------------------------------------------------
      92 | ERROR | Doc comment for parameter $serializer_context does not match actual variable name <undefined>
      95 | ERROR | Arguments with default values must be at the end of the argument list
     226 | ERROR | Public method name "ContentExportTrait::generateSiteUUIDFile" is not in lowerCamel format
    -----------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Importer/ContentImporterInterface.php
    ---------------------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AFFECTING 1 LINE
    ---------------------------------------------------------------------------------------------------------------------------
     15 | ERROR | Doc comment for parameter $entity_type_id does not match actual variable name $context
    ---------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Content/ContentFileStorageFactory.php
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
     18 | WARNING | The @see url 'https://api.drupal.org/api/drupal/core%21includes%21bootstrap.inc/constant/CONFIG_ACTIVE_DIRECTORY/8.9.x' does not match the standard:
        |         | http(s)://www.drupal.org/node/n or http(s)://www.drupal.org/project/aaa/issues/n
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    
    
    FILE: /Users/interns/Demo-site/drupal-org-issues/web/modules/contrib/content_sync/src/Normalizer/ContentEntityNormalizer.php
    ----------------------------------------------------------------------------------------------------------------------------
    FOUND 1 ERROR AND 1 WARNING AFFECTING 2 LINES
    ----------------------------------------------------------------------------------------------------------------------------
     111 | WARNING | Possible useless method overriding detected
     118 | ERROR   | Missing parameter type
    ----------------------------------------------------------------------------------------------------------------------------
    
    Time: 2.5 secs; Memory: 14MB
    
    ➜  contrib

    Please review.
    Thank you.

Production build 0.71.5 2024