Chore(deps-dev): Bump nextcloud/coding-standard from 1.2.1 to 1.2.3
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 1.2.1 to 1.2.3. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v1.2.1...v1.2.3) --- updated-dependencies: - dependency-name: nextcloud/coding-standard dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Julius Härtl
parent
3daad1b9bc
commit
ba3e97b73d
@@ -27,7 +27,7 @@ class AclTest extends \Test\TestCase {
|
||||
private function createAclUser() {
|
||||
$acl = new Acl();
|
||||
$acl->setId(1);
|
||||
$acl->setParticipant("admin");
|
||||
$acl->setParticipant('admin');
|
||||
$acl->setType(Acl::PERMISSION_TYPE_USER);
|
||||
$acl->setBoardId(1);
|
||||
$acl->setPermissionEdit(true);
|
||||
@@ -39,7 +39,7 @@ class AclTest extends \Test\TestCase {
|
||||
private function createAclGroup() {
|
||||
$acl = new Acl();
|
||||
$acl->setId(1);
|
||||
$acl->setParticipant("administrators");
|
||||
$acl->setParticipant('administrators');
|
||||
$acl->setType(Acl::PERMISSION_TYPE_GROUP);
|
||||
$acl->setBoardId(1);
|
||||
$acl->setPermissionEdit(true);
|
||||
|
||||
@@ -28,7 +28,7 @@ class AttachmentTest extends \Test\TestCase {
|
||||
$attachment = new Attachment();
|
||||
$attachment->setId(1);
|
||||
$attachment->setCardId(123);
|
||||
$attachment->setData("blob");
|
||||
$attachment->setData('blob');
|
||||
$attachment->setCreatedBy('admin');
|
||||
$attachment->setType('deck_file');
|
||||
return $attachment;
|
||||
|
||||
@@ -8,9 +8,9 @@ class BoardTest extends TestCase {
|
||||
private function createBoard() {
|
||||
$board = new Board();
|
||||
$board->setId(1);
|
||||
$board->setTitle("My Board");
|
||||
$board->setOwner("admin");
|
||||
$board->setColor("000000");
|
||||
$board->setTitle('My Board');
|
||||
$board->setOwner('admin');
|
||||
$board->setColor('000000');
|
||||
$board->setArchived(false);
|
||||
// TODO: relation shared labels acl
|
||||
return $board;
|
||||
@@ -20,9 +20,9 @@ class BoardTest extends TestCase {
|
||||
$board->setUsers(['user1', 'user2']);
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Board",
|
||||
'owner' => "admin",
|
||||
'color' => "000000",
|
||||
'title' => 'My Board',
|
||||
'owner' => 'admin',
|
||||
'color' => '000000',
|
||||
'labels' => [],
|
||||
'permissions' => [],
|
||||
'stacks' => [],
|
||||
@@ -44,9 +44,9 @@ class BoardTest extends TestCase {
|
||||
self::assertNull($board->getLabels());
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Board",
|
||||
'owner' => "admin",
|
||||
'color' => "000000",
|
||||
'title' => 'My Board',
|
||||
'owner' => 'admin',
|
||||
'color' => '000000',
|
||||
'labels' => [],
|
||||
'permissions' => [],
|
||||
'stacks' => [],
|
||||
@@ -63,13 +63,13 @@ class BoardTest extends TestCase {
|
||||
|
||||
public function testSetLabels() {
|
||||
$board = $this->createBoard();
|
||||
$board->setLabels(["foo", "bar"]);
|
||||
$board->setLabels(['foo', 'bar']);
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Board",
|
||||
'owner' => "admin",
|
||||
'color' => "000000",
|
||||
'labels' => ["foo", "bar"],
|
||||
'title' => 'My Board',
|
||||
'owner' => 'admin',
|
||||
'color' => '000000',
|
||||
'labels' => ['foo', 'bar'],
|
||||
'permissions' => [],
|
||||
'stacks' => [],
|
||||
'deletedAt' => 0,
|
||||
@@ -95,9 +95,9 @@ class BoardTest extends TestCase {
|
||||
$board->setShared(1);
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Board",
|
||||
'owner' => "admin",
|
||||
'color' => "000000",
|
||||
'title' => 'My Board',
|
||||
'owner' => 'admin',
|
||||
'color' => '000000',
|
||||
'labels' => [],
|
||||
'permissions' => [],
|
||||
'stacks' => [],
|
||||
|
||||
@@ -32,13 +32,13 @@ class CardTest extends TestCase {
|
||||
private function createCard() {
|
||||
$card = new Card();
|
||||
$card->setId(1);
|
||||
$card->setTitle("My Card");
|
||||
$card->setDescription("a long description");
|
||||
$card->setTitle('My Card');
|
||||
$card->setDescription('a long description');
|
||||
$card->setStackId(1);
|
||||
$card->setType('text');
|
||||
$card->setLastModified(234);
|
||||
$card->setCreatedAt(123);
|
||||
$card->setOwner("admin");
|
||||
$card->setOwner('admin');
|
||||
$card->setOrder(12);
|
||||
$card->setArchived(false);
|
||||
$card->setDone(null);
|
||||
@@ -68,8 +68,8 @@ class CardTest extends TestCase {
|
||||
$card = $this->createCard();
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Card",
|
||||
'description' => "a long description",
|
||||
'title' => 'My Card',
|
||||
'description' => 'a long description',
|
||||
'type' => 'text',
|
||||
'lastModified' => 234,
|
||||
'createdAt' => 123,
|
||||
@@ -96,8 +96,8 @@ class CardTest extends TestCase {
|
||||
$card->setLabels([]);
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Card",
|
||||
'description' => "a long description",
|
||||
'title' => 'My Card',
|
||||
'description' => 'a long description',
|
||||
'type' => 'text',
|
||||
'lastModified' => 234,
|
||||
'createdAt' => 123,
|
||||
@@ -126,8 +126,8 @@ class CardTest extends TestCase {
|
||||
$card->setLabels([]);
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Card",
|
||||
'description' => "a long description",
|
||||
'title' => 'My Card',
|
||||
'description' => 'a long description',
|
||||
'type' => 'text',
|
||||
'lastModified' => 234,
|
||||
'createdAt' => 123,
|
||||
|
||||
@@ -29,8 +29,8 @@ class LabelTest extends TestCase {
|
||||
private function createLabel() {
|
||||
$label = new Label();
|
||||
$label->setId(1);
|
||||
$label->setTitle("My Label");
|
||||
$label->setColor("000000");
|
||||
$label->setTitle('My Label');
|
||||
$label->setColor('000000');
|
||||
return $label;
|
||||
}
|
||||
public function testJsonSerializeBoard() {
|
||||
|
||||
@@ -27,7 +27,7 @@ class StackTest extends \Test\TestCase {
|
||||
private function createStack() {
|
||||
$board = new Stack();
|
||||
$board->setId(1);
|
||||
$board->setTitle("My Stack");
|
||||
$board->setTitle('My Stack');
|
||||
$board->setBoardId(1);
|
||||
$board->setOrder(1);
|
||||
return $board;
|
||||
@@ -36,7 +36,7 @@ class StackTest extends \Test\TestCase {
|
||||
$stack = $this->createStack();
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Stack",
|
||||
'title' => 'My Stack',
|
||||
'order' => 1,
|
||||
'boardId' => 1,
|
||||
'deletedAt' => 0,
|
||||
@@ -45,15 +45,15 @@ class StackTest extends \Test\TestCase {
|
||||
], $stack->jsonSerialize());
|
||||
}
|
||||
public function testJsonSerializeWithCards() {
|
||||
$cards = ["foo", "bar"];
|
||||
$cards = ['foo', 'bar'];
|
||||
$stack = $this->createStack();
|
||||
$stack->setCards($cards);
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'title' => "My Stack",
|
||||
'title' => 'My Stack',
|
||||
'order' => 1,
|
||||
'boardId' => 1,
|
||||
'cards' => ["foo", "bar"],
|
||||
'cards' => ['foo', 'bar'],
|
||||
'deletedAt' => 0,
|
||||
'lastModified' => 0,
|
||||
'ETag' => $stack->getETag(),
|
||||
|
||||
Reference in New Issue
Block a user