Skip to content

Commit

Permalink
Merge pull request #3 from bookboon/feature/re-gen
Browse files Browse the repository at this point in the history
Feature/re gen
  • Loading branch information
lkm authored Jun 1, 2022
2 parents fcd6e70 + 9c95247 commit 4574bdb
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 6,099 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/
vendor/
composer.lock
22 changes: 22 additions & 0 deletions ApiModels/Book.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ class Book

/** @var Book[]|null $similar */
protected ?array $similar = null;
protected string $skillLevel = '';
protected ?string $state = null;
protected ?string $subtitle = null;

/** @var Thumbnail[]|null $thumbnail */
Expand Down Expand Up @@ -315,6 +317,26 @@ public function getSimilar(): ?array
return $this->similar;
}

public function setSkillLevel(string $skillLevel): void
{
$this->skillLevel = $skillLevel;
}

public function getSkillLevel(): string
{
return $this->skillLevel;
}

public function setState(?string $state): void
{
$this->state = $state;
}

public function getState(): ?string
{
return $this->state;
}

public function setSubtitle(?string $subtitle): void
{
$this->subtitle = $subtitle;
Expand Down
61 changes: 0 additions & 61 deletions Generate/BookboonDefinePropertyPlugin.php

This file was deleted.

62 changes: 0 additions & 62 deletions Generate/BookboonGetPropertyMethodPlugin.php

This file was deleted.

41 changes: 0 additions & 41 deletions Generate/BookboonSetPropertyMethodPlugin.php

This file was deleted.

22 changes: 0 additions & 22 deletions Generate/ExtraTrait.php

This file was deleted.

Loading

0 comments on commit 4574bdb

Please sign in to comment.