- Issue created by @sidharth_soman
- 🇮🇳India sidharth_soman Bangalore
I am working on this and will provide an MR.
- Status changed to Active
almost 2 years ago 3:35pm 11 May 2023 - 🇮🇹Italy apaderno Brescia, 🇮🇹
Since there are not patches nor MRs, the status is still Active.
- @sidharth_soman opened merge request.
- Issue was unassigned.
- Status changed to Needs review
almost 2 years ago 4:13pm 11 May 2023 - Status changed to Needs work
almost 2 years ago 11:05pm 17 May 2023 - 🇨🇴Colombia metallized
I still getting this
FILE: /home/drupal/serial/src/SerialSQLStorage.php ---------------------------------------------------------------------------------------------- FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE ---------------------------------------------------------------------------------------------- 150 | WARNING | \Drupal calls should be avoided in classes, use dependency injection instead FILE: /home/drupal/serial/src/Plugin/Field/FieldFormatter/SerialDefaultFormatter.php ------------------------------------------------------------------------------------------------------ FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE ------------------------------------------------------------------------------------------------------ 33 | WARNING | \Drupal calls should be avoided in classes, use dependency injection instead ------------------------------------------------------------------------------------------------------ Time: 275ms; Memory: 10MB
the output of
phpcs -i
:The installed coding standards are MySource, PEAR, PSR1, PSR2, PSR12, Squiz, Zend, Drupal, DrupalPractice, VariableAnalysis and SlevomatCodingStandard
- First commit to issue fork.
- Status changed to Needs review
almost 2 years ago 5:55am 18 May 2023 - Status changed to Needs work
almost 2 years ago 8:22am 18 May 2023 - 🇮🇹Italy apaderno Brescia, 🇮🇹
+ /** + * Drupal\Core\Render\RendererInterface definition. + * + * @var \Drupal\Core\Render\RendererInterface + */ + protected $renderer;
The short description must not repeat the class name (which is already given in the
@var
line) nor contain just the class name and definition. (Drupal\Core\Render\RendererInterface definition. is not even correct, since a class property is not an interface definition.)+ /** + * {@inheritdoc} + */ + public function __construct(RendererInterface $renderer) { + $this->renderer = $renderer; + }
{@inheritdoc}
is not used in documentation comments for constructors.
The description for a constructor must start withConstructs a new
followed by the class name (including its namespace), and end withobject.
The documentation description for a constructor must describe its parameters.+ /** + * {@inheritdoc} + */ + public function __construct(RendererInterface $renderer) { + $this->renderer = $renderer; + } + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container) { + return new static( + $container->get('renderer') + ); + }
Since this class extends
FormatterBase
, that code is not correct. The parent class constructor is not called.- \Drupal::messenger()->addMessage(t('Serial values have been automatically set for %count existing entities, starting from %start_value.', [ + \Drupal::messenger()->addMessage($this->t('Serial values have been automatically set for %count existing entities, starting from %start_value.', [
The messenger should be injected too, or
phpcs
would still complain with \Drupal calls should be avoided in classes, use dependency injection. - Assigned to imustakim
- Issue was unassigned.
- Status changed to Needs review
almost 2 years ago 1:06pm 18 May 2023 - Status changed to Needs work
almost 2 years ago 4:31pm 18 May 2023 - 🇮🇹Italy apaderno Brescia, 🇮🇹
+ /** + * Constructs a new SerialDefaultFormatter object. + * + * @param \Drupal\Core\Render\RendererInterface $renderer + * The renderer. + */ + public function __construct(RendererInterface $renderer) { + $this->renderer = $renderer; + }
The class name is still missing its namespace.
What is more important, the constructor is not calling the constructor for the parent class, thecreate()
method is missing.
This means the changed code does not work. I would suggest to check what a class likeOEmbedFormatter
does.Since that is introducing a bug in the code, that must be immediately corrected.
- 🇨🇴Colombia metallized
Hey, if you get lost just follow this guide → .
- Status changed to Needs review
almost 2 years ago 3:39am 20 May 2023 - 🇨🇴Colombia metallized
This was fixed on dev, can anyone please review, thanks.
- 🇮🇹Italy apaderno Brescia, 🇮🇹
This is an issue that reports only PHP_CodeSniffer warnings/errors.
- 🇨🇴Colombia metallized
Can anyone review this so we can change to RTBC, thanks.
- Status changed to Fixed
over 1 year ago 7:46pm 4 August 2023 - 🇨🇴Colombia metallized
Released a new version with this fix, thanks to all.
Automatically closed - issue fixed for 2 weeks with no activity.