Issue #2857714 by klausi: Upgrade Coder to 8.2.11
parent
72d65cc85c
commit
f621a88dd0
|
@ -3043,28 +3043,28 @@
|
|||
},
|
||||
{
|
||||
"name": "drupal/coder",
|
||||
"version": "8.2.10",
|
||||
"version": "8.2.11",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/klausi/coder.git",
|
||||
"reference": "c835ff5c1733676fe0d3f3b861e814d570baaa6f"
|
||||
"reference": "564a361274d8234d36385766f063ca89c4184479"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/klausi/coder/zipball/c835ff5c1733676fe0d3f3b861e814d570baaa6f",
|
||||
"reference": "c835ff5c1733676fe0d3f3b861e814d570baaa6f",
|
||||
"url": "https://api.github.com/repos/klausi/coder/zipball/564a361274d8234d36385766f063ca89c4184479",
|
||||
"reference": "564a361274d8234d36385766f063ca89c4184479",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-mbstring": "*",
|
||||
"php": ">=5.4.0",
|
||||
"squizlabs/php_codesniffer": ">=2.7.0 <3.0",
|
||||
"squizlabs/php_codesniffer": ">=2.8.1 <3.0",
|
||||
"symfony/yaml": ">=2.0.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": ">=3.7"
|
||||
"phpunit/phpunit": ">=3.7 <6"
|
||||
},
|
||||
"type": "library",
|
||||
"type": "phpcodesniffer-standard",
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"GPL-2.0+"
|
||||
|
@ -3076,7 +3076,7 @@
|
|||
"phpcs",
|
||||
"standards"
|
||||
],
|
||||
"time": "2016-12-09T21:57:53+00:00"
|
||||
"time": "2017-03-02T08:57:31+00:00"
|
||||
},
|
||||
{
|
||||
"name": "fabpot/goutte",
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
"require-dev": {
|
||||
"behat/mink": "1.7.x-dev",
|
||||
"behat/mink-goutte-driver": "~1.2",
|
||||
"drupal/coder": "8.2.10",
|
||||
"drupal/coder": "8.2.11",
|
||||
"jcalderonzumba/gastonjs": "~1.0.2",
|
||||
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
|
||||
"mikey179/vfsStream": "~1.2",
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
* Install hooks for page_cache_form_test.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_install().
|
||||
*/
|
||||
function page_cache_form_test_install() {
|
||||
// Set an explicit module weight, to ensure that the form alter hook is
|
||||
// always called after page_cache_form_alter().
|
||||
|
|
|
@ -55,9 +55,13 @@
|
|||
<exclude name="Drupal.Commenting.FunctionComment.MissingReturnComment"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.MissingReturnType"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ParamCommentFullStop"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ParamCommentIndentation"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ParamCommentNewLine"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ParamCommentNotCapital"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ParamMissingDefinition"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ParamNameNoMatch"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ParamTypeSpaces"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ReturnCommentIndentation"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.ReturnTypeSpaces"/>
|
||||
<exclude name="Drupal.Commenting.FunctionComment.TypeHintMissing"/>
|
||||
</rule>
|
||||
|
|
|
@ -5,4 +5,7 @@
|
|||
* Include file for test module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Test hook.
|
||||
*/
|
||||
function module_handler_test_hook_include() {}
|
||||
|
|
|
@ -5,4 +5,9 @@
|
|||
* Include file for test module.
|
||||
*/
|
||||
|
||||
function module_handler_test_added_hook($arg) { return $arg; }
|
||||
/**
|
||||
* Test function.
|
||||
*/
|
||||
function module_handler_test_added_hook($arg) {
|
||||
return $arg;
|
||||
}
|
||||
|
|
|
@ -5,4 +5,9 @@
|
|||
* Test module.
|
||||
*/
|
||||
|
||||
function module_handler_test_added_helper($arg) { return $arg; }
|
||||
/**
|
||||
* Test function.
|
||||
*/
|
||||
function module_handler_test_added_helper($arg) {
|
||||
return $arg;
|
||||
}
|
||||
|
|
|
@ -5,4 +5,9 @@
|
|||
* Test module.
|
||||
*/
|
||||
|
||||
function module_handler_test_all2_hook($arg) { return $arg; }
|
||||
/**
|
||||
* Test function.
|
||||
*/
|
||||
function module_handler_test_all2_hook($arg) {
|
||||
return $arg;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue