Issue #2729083 by martin107, jhodgdon: @encode becomes @endcode

(cherry picked from commit 1694030bc2)
8.2.x
xjm 2016-05-27 08:20:47 -05:00
parent c28aa40f54
commit fbe287dc6a
6 changed files with 7 additions and 7 deletions

View File

@ -138,7 +138,7 @@ class ExtensionDiscovery {
* To also find test modules, add * To also find test modules, add
* @code * @code
* $settings['extension_discovery_scan_tests'] = TRUE; * $settings['extension_discovery_scan_tests'] = TRUE;
* @encode * @endcode
* to your settings.php. * to your settings.php.
* *
* The information is returned in an associative array, keyed by the extension * The information is returned in an associative array, keyed by the extension

View File

@ -21,7 +21,7 @@ interface ModuleInstallerInterface {
* To install test modules add * To install test modules add
* @code * @code
* $settings['extension_discovery_scan_tests'] = TRUE; * $settings['extension_discovery_scan_tests'] = TRUE;
* @encode * @endcode
* to your settings.php. * to your settings.php.
* *
* @param string[] $module_list * @param string[] $module_list

View File

@ -497,7 +497,7 @@ EOD;
* To install test modules outside of the testing environment, add * To install test modules outside of the testing environment, add
* @code * @code
* $settings['extension_discovery_scan_tests'] = TRUE; * $settings['extension_discovery_scan_tests'] = TRUE;
* @encode * @endcode
* to your settings.php. * to your settings.php.
* *
* @param array $modules * @param array $modules

View File

@ -876,7 +876,7 @@ abstract class WebTestBase extends TestBase {
* To install test modules outside of the testing environment, add * To install test modules outside of the testing environment, add
* @code * @code
* $settings['extension_discovery_scan_tests'] = TRUE; * $settings['extension_discovery_scan_tests'] = TRUE;
* @encode * @endcode
* to your settings.php. * to your settings.php.
* *
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container * @param \Symfony\Component\DependencyInjection\ContainerInterface $container

View File

@ -833,12 +833,12 @@ function hook_views_pre_render(ViewExecutable $view) {
* primary field will be a nid, you can do something like this: * primary field will be a nid, you can do something like this:
* @code * @code
* <!--post-FIELD-NID--> * <!--post-FIELD-NID-->
* @encode * @endcode
* And then in the post-render, create an array with the text that should * And then in the post-render, create an array with the text that should
* go there: * go there:
* @code * @code
* strtr($output, array('<!--post-FIELD-1-->' => 'output for FIELD of nid 1'); * strtr($output, array('<!--post-FIELD-1-->' => 'output for FIELD of nid 1');
* @encode * @endcode
* All of the cached result data will be available in $view->result, as well, * All of the cached result data will be available in $view->result, as well,
* so all ids used in the query should be discoverable. * so all ids used in the query should be discoverable.
* *

View File

@ -862,7 +862,7 @@ abstract class KernelTestBase extends \PHPUnit_Framework_TestCase implements Ser
* To install test modules outside of the testing environment, add * To install test modules outside of the testing environment, add
* @code * @code
* $settings['extension_discovery_scan_tests'] = TRUE; * $settings['extension_discovery_scan_tests'] = TRUE;
* @encode * @endcode
* to your settings.php. * to your settings.php.
* *
* @param string[] $modules * @param string[] $modules