Verified Commit c9f75473 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3268818 by ravi.shankar, quietone: Fix class comment doc blocks in non...

Issue #3268818 by ravi.shankar, quietone: Fix class comment doc blocks in non tests 'Drupal.Commenting.DocComment.ShortSingleLine'

(cherry picked from commit eec32101)
parent 884aaabe
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -10,10 +10,11 @@
use Symfony\Component\Finder\Finder;

/**
 * Provides static functions for composer script events. See also
 * core/lib/Drupal/Composer/Composer.php, which contains similar
 * scripts needed by projects that include drupal/core. Scripts that
 * are only needed by drupal/drupal go here.
 * Provides static functions for composer script events.
 *
 * See also core/lib/Drupal/Composer/Composer.php, which contains similar
 * scripts needed by projects that include drupal/core. Scripts that are only
 * needed by drupal/drupal go here.
 *
 * @see https://getcomposer.org/doc/articles/scripts.md
 */
+1 −2
Original line number Diff line number Diff line
@@ -3,8 +3,7 @@
namespace Drupal\Component\Plugin\Discovery;

/**
 * An interface defining the minimum requirements of building a plugin
 * discovery component.
 * Defines the minimum requirements for a plugin discovery component.
 *
 * @ingroup plugin_api
 */
+1 −2
Original line number Diff line number Diff line
@@ -3,8 +3,7 @@
namespace Drupal\Component\Plugin\Discovery;

/**
 * A discovery mechanism that allows plugin definitions to be manually
 * registered rather than actively discovered.
 * Allows plugin definitions to be manually registered.
 */
class StaticDiscovery implements DiscoveryInterface {

+1 −2
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
namespace Drupal\Component\Plugin\Exception;

/**
 * Exception thrown when a decorator's _call() method is triggered, but the
 * decorated object does not contain the requested method.
 * Thrown when a decorator's _call() method uses a method that does not exist.
 */
class InvalidDecoratedMethod extends \BadMethodCallException implements ExceptionInterface {}
+1 −2
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
namespace Drupal\Component\Plugin\Exception;

/**
 * Generic Plugin exception class to be thrown when no more specific class
 * is applicable.
 * Base class for plugin exceptions.
 */
class PluginException extends \Exception implements ExceptionInterface {}
Loading