Fix PHPCS issues
This commit is contained in:
parent
98fba9306f
commit
596ee4979d
|
@ -1,5 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
* Install, update and uninstall functions for opdavies_blog.
|
||||||
|
*/
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use Drupal\opdavies_blog\Repository\PostRepository;
|
use Drupal\opdavies_blog\Repository\PostRepository;
|
||||||
|
|
|
@ -36,9 +36,9 @@ final class ReorderBlogTagsTest extends EntityKernelTestBase {
|
||||||
/** @var VocabularyInterface $vocabulary */
|
/** @var VocabularyInterface $vocabulary */
|
||||||
$vocabulary = Vocabulary::load('tags');
|
$vocabulary = Vocabulary::load('tags');
|
||||||
|
|
||||||
$this->createTerm($vocabulary, ['name' => 'Drupal']); // 1
|
$this->createTerm($vocabulary, ['name' => 'Drupal']);
|
||||||
$this->createTerm($vocabulary, ['name' => 'PHP']); // 2
|
$this->createTerm($vocabulary, ['name' => 'PHP']);
|
||||||
$this->createTerm($vocabulary, ['name' => 'Symfony']); // 3
|
$this->createTerm($vocabulary, ['name' => 'Symfony']);
|
||||||
|
|
||||||
$post = $this->createNode([
|
$post = $this->createNode([
|
||||||
'field_tags' => [3, 1, 2],
|
'field_tags' => [3, 1, 2],
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
* Install, update and uninstall functions for opdavies_talks.
|
||||||
|
*/
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use Drupal\opdavies_talks\Repository\TalkRepository;
|
use Drupal\opdavies_talks\Repository\TalkRepository;
|
||||||
|
|
|
@ -66,5 +66,4 @@ final class Event extends Date {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue