Resolve #3048495 "D11.x fix function trigger error standard"
4 open threads
Closes #3048495
Merge request reports
Activity
added 2 commits
added 180 commits
-
4846522e...3041dbfe - 173 commits from branch
project:11.x
- 8a099d54 - MR !1894 (closed) to 10.0.x-dev
- 0253841b - Only currently needed Drupal.Semantics.FunctionTriggerError suppressions
- 877074f4 - Find and fix remaining failures
- b1baa241 - remove more ignore lines
- c2a93538 - Fix missed items during rebase
- b1790b87 - Correctly fix rebase mistakes
- dab25058 - Fix recently added in system module
Toggle commit list-
4846522e...3041dbfe - 173 commits from branch
added 9 commits
- 0da655f0 - MR !1894 (closed) to 10.0.x-dev
- 9750334c - Only currently needed Drupal.Semantics.FunctionTriggerError suppressions
- bc693670 - Find and fix remaining failures
- 16cd9495 - remove more ignore lines
- 8e102c25 - Fix missed items during rebase
- cfc923a6 - Correctly fix rebase mistakes
- 4846522e - Fix recently added in system module
- aa746a1c - Add 'is removed' to two messages
- 1671d08b - Add CR issue numbers to two messages
Toggle commit listadded 183 commits
-
1671d08b...29ae2445 - 174 commits from branch
project:11.x
- e5fbac7d - MR !1894 (closed) to 10.0.x-dev
- 76ca78ca - Only currently needed Drupal.Semantics.FunctionTriggerError suppressions
- 4e27a057 - Find and fix remaining failures
- 14954743 - remove more ignore lines
- 6fc06bef - Fix missed items during rebase
- e77d4dc1 - Correctly fix rebase mistakes
- 5afe93b0 - Fix recently added in system module
- a6761a7a - Add 'is removed' to two messages
- ebd6b9bd - Add CR issue numbers to two messages
Toggle commit list-
1671d08b...29ae2445 - 174 commits from branch
added 22 commits
-
d2743812...fa8db8e8 - 11 commits from branch
project:11.x
- 0a275164 - 1 earlier commit
- 8803ff04 - Only currently needed Drupal.Semantics.FunctionTriggerError suppressions
- 9d1c8957 - Find and fix remaining failures
- 4893a6d7 - remove more ignore lines
- 59a55cf0 - Fix missed items during rebase
- 8e27ef73 - Correctly fix rebase mistakes
- c9207e24 - Fix recently added in system module
- 0ff6ab98 - Add 'is removed' to two messages
- 869842f4 - Add CR issue numbers to two messages
- 253d1e45 - Fix for recent commits
- ae52c305 - Add CR link to ListItemBase
Toggle commit list-
d2743812...fa8db8e8 - 11 commits from branch
added 25 commits
-
82b5e3b8...f276622c - 10 commits from branch
project:11.x
- f276622c...beb958e6 - 5 earlier commits
- 5ab547a9 - Correctly fix rebase mistakes
- b453e63b - Fix recently added in system module
- fb3c4065 - Add 'is removed' to two messages
- 1e63646c - Add CR issue numbers to two messages
- afefd2b6 - Fix for recent commits
- dddf3671 - Add CR link to ListItemBase
- d37fedfa - Update messages in BlockContentRedirectTest.php
- f59a7dc3 - Fix messages in ToolkitGdTest.php
- e655e9f3 - update msg in...
- 74f90da5 - Fix remaining messages in...
Toggle commit list-
82b5e3b8...f276622c - 10 commits from branch
131 131 * {@inheritdoc} 132 132 */ 133 133 public function getAll() { 134 @trigger_error(__METHOD__ . ' is deprecated in drupal:10.2.0 and will be removed in drupal:11.0.0, there is no replacement. See https:// www.drupal.org/node/3301744', E_USER_DEPRECATED); 134 @trigger_error(__METHOD__ . ' is deprecated in drupal:10.2.0 and is removed in drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3301744', E_USER_DEPRECATED); changed this line in version 12 of the diff
- Resolved by quietone
- Resolved by quietone
290 290 */ 291 291 public function scan($text) { 292 292 if (!is_string($text)) { 293 @trigger_error('Calling ' . __METHOD__ . '() with a $text parameter of type other than string is deprecated in drupal:10.1.0, a typehint will be added in drupal:11.0.0. See https://www.drupal.org/node/3334317', E_USER_DEPRECATED); 293 @trigger_error('Calling ' . __METHOD__ . '() with a $text parameter of type other than string is deprecated in drupal:10.1.0 and is removed in drupal:11.0.0. See https://www.drupal.org/node/3334317', E_USER_DEPRECATED); "is removed in" is incorrect here, we are not removing anything - instead it will (presumably) throw an error?
293 @trigger_error('Calling ' . __METHOD__ . '() with a $text parameter of type other than string is deprecated in drupal:10.1.0 and is removed in drupal:11.0.0. See https://www.drupal.org/node/3334317', E_USER_DEPRECATED); 293 @trigger_error('Calling ' . __METHOD__ . '() with a $text parameter of type other than string is deprecated in drupal:10.1.0 and will cause an error from drupal:11.0.0. See https://www.drupal.org/node/3334317', E_USER_DEPRECATED); changed this line in version 12 of the diff
- Resolved by quietone
625 625 * @see https://www.drupal.org/node/3354596 626 626 */ 627 627 protected function createCacheId(array $keys, array $contexts) { 628 @trigger_error(__FUNCTION__ . '() is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. There is no replacement. See: https://www.drupal.org/project/drupal/issues/2551419.', E_USER_DEPRECATED); 628 @trigger_error(__FUNCTION__ . '() is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3354596', E_USER_DEPRECATED); changed this line in version 12 of the diff
54 54 // Check for incorrect visibility of the $modules property. 55 55 $class = new \ReflectionClass($test); 56 56 if ($class->hasProperty('modules') && !$class->getProperty('modules')->isProtected()) { 57 @trigger_error('The ' . get_class($test) . '::$modules property must be declared protected. See https://www.drupal.org/node/2909426', E_USER_DEPRECATED); 57 @trigger_error('Declaring ' . get_class($test) . '::$modules with public visibility is deprecated in drupal:9.1.0 and must be declared protected in drupal:10.0.0. See https://www.drupal.org/node/2909426', E_USER_DEPRECATED); Wonder if we should just remove this now? (in a separate issue)
Edited by Dave Long
added 4 commits
Toggle commit listadded 81 commits
-
3710ce44...12d7bd84 - 63 commits from branch
project:11.x
- 12d7bd84...3a901bc3 - 8 earlier commits
- 74fe7528 - Add CR issue numbers to two messages
- 8b0c1bab - Fix for recent commits
- a7322c12 - Add CR link to ListItemBase
- f58ce79a - Update messages in BlockContentRedirectTest.php
- d4c53ca0 - Fix messages in ToolkitGdTest.php
- f02e90c8 - update msg in...
- 6dd369bc - Fix remaining messages in...
- 99641ac2 - Resolve threads
- f34f3a83 - apply two suggestions
- 3275eac1 - Fix TokenTest
Toggle commit list-
3710ce44...12d7bd84 - 63 commits from branch
added 75 commits
-
3275eac1...3b8df679 - 57 commits from branch
project:11.x
- 3b8df679...c6e8c013 - 8 earlier commits
- 02c30d74 - Add CR issue numbers to two messages
- 1f3476ea - Fix for recent commits
- d1021e61 - Add CR link to ListItemBase
- 9c9f5144 - Update messages in BlockContentRedirectTest.php
- 8f45e45b - Fix messages in ToolkitGdTest.php
- cbd9a2df - update msg in...
- 3b513952 - Fix remaining messages in...
- 248e894d - Resolve threads
- e026d68f - apply two suggestions
- 61c812fe - Fix TokenTest
Toggle commit list-
3275eac1...3b8df679 - 57 commits from branch
added 50 commits
-
e0d12c83...d251a98e - 31 commits from branch
project:11.x
- d251a98e...486019e6 - 9 earlier commits
- e49949c2 - Fix for recent commits
- 8878add7 - Add CR link to ListItemBase
- ac27f75e - Update messages in BlockContentRedirectTest.php
- b41139fc - Fix messages in ToolkitGdTest.php
- 27ef1988 - update msg in...
- c00cc86f - Fix remaining messages in...
- 2b1fab59 - Resolve threads
- 97ff235e - apply two suggestions
- 82a562e5 - Fix TokenTest
- ee17b69e - Fix SchemaCheckTrait
Toggle commit list-
e0d12c83...d251a98e - 31 commits from branch
added 22 commits
-
8a971821...0a8a9dcb - 2 commits from branch
project:11.x
- 0a8a9dcb...0de11b86 - 10 earlier commits
- 20900a70 - Add CR link to ListItemBase
- b5f14a1c - Update messages in BlockContentRedirectTest.php
- 993d2039 - Fix messages in ToolkitGdTest.php
- b86041e5 - update msg in...
- 0737ea01 - Fix remaining messages in...
- 8074bc9f - Resolve threads
- 27b41cf1 - apply two suggestions
- 8e12fb8d - Fix TokenTest
- 7171f3cd - Fix SchemaCheckTrait
- 621ee0c1 - Fixed new invalid deprecation messages
Toggle commit list-
8a971821...0a8a9dcb - 2 commits from branch
added 22 commits
- 621ee0c1...ac27f75e - 12 earlier commits
- b41139fc - Fix messages in ToolkitGdTest.php
- 27ef1988 - update msg in...
- c00cc86f - Fix remaining messages in...
- 2b1fab59 - Resolve threads
- 97ff235e - apply two suggestions
- 82a562e5 - Fix TokenTest
- ee17b69e - Fix SchemaCheckTrait
- 8a971821 - Fixed new invalid deprecation messages
- a5af8b84 - Fixing the fixes...
- 5dc5cc35 - Merge branch '3048495-d11.x-fix-function-trigger-error-standard' of...
Toggle commit listadded 115 commits
-
5dc5cc35...dff46835 - 85 commits from branch
project:11.x
- dff46835...6687140a - 20 earlier commits
- b1f4034a - MR !1894 (closed) to 10.0.x-dev
- c52ef07e - Only currently needed Drupal.Semantics.FunctionTriggerError suppressions
- f0c0d3ec - Find and fix remaining failures
- affe7d0c - remove more ignore lines
- 6c70a6bc - Fix for recent commits
- 7bc085b1 - Add CR link to ListItemBase
- ba91aede - Resolve threads
- 18bb6c1a - apply two suggestions
- 8e7a7ab3 - Fix TokenTest
- 5a1f7cf0 - Fix Module.php
Toggle commit list-
5dc5cc35...dff46835 - 85 commits from branch
Please register or sign in to reply