Skip to content

Commit

Permalink
updating tests for removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Mar 17, 2018
1 parent 01f6a3c commit 16596b1
Show file tree
Hide file tree
Showing 53 changed files with 0 additions and 106 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,4 @@ public function getId(): ?int
{
return $this->id;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,4 @@ public function removeTag(Tag $tag): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ public function setUser(?User $user): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ public function setUser(User $user): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Doctrine/fixtures/expected_overwrite/src/Entity/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,4 @@ public function getId(): ?int
{
return $this->id;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,4 @@ public function removeTag(Tag $tag): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ public function setUser(?User $user): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ public function setUser(User $user): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Doctrine/fixtures/expected_xml/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,4 @@ public function removeAvatar(UserAvatar $avatar): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Doctrine/fixtures/source_project/src/Entity/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,4 @@ public function getId(): ?int
{
return $this->id;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Doctrine/fixtures/source_project/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,4 @@ public function setUserProfile(?UserProfile $userProfile)
{
$this->userProfile = $userProfile;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,4 @@ class UserAvatar
* @ORM\JoinColumn(nullable=false)
*/
private $user;

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,4 @@ class UserProfile
* @ORM\JoinColumn(nullable=false)
*/
private $user;

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,4 @@ public function getId(): ?int
// custom comment
return $this->id;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/add_entity_field/User_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ public function setFooProp(string $fooProp): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/add_entity_field/User_simple_datetime.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ public function setCreatedAt(?\DateTimeInterface $createdAt): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,4 @@ public function setFirstName(string $firstName): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/add_getter/User_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,4 @@ public function getFooProp(): ?string
{
return $this->fooProp;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,4 @@ public function removeRecipe(Recipe $recipe): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,4 @@ public function removeRecipe(Recipe $recipe): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,4 @@ public function removeRecipe(Recipe $recipe): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ public function setCategory(?Category $category): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ public function setCategory(?Category $category): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ public function setCategory(?Category $category): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ public function setCategory(?Category $category): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/add_one_to_many_relation/User_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,4 @@ public function removeAvatarPhoto(UserAvatarPhoto $avatarPhoto): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,4 @@ public function removeAvatarPhoto(UserAvatarPhoto $avatarPhoto): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,4 @@ public function removeAvatarPhoto(UserAvatarPhoto $avatarPhoto): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,4 @@ public function setUser(?User $user): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,4 @@ public function setUser(User $user): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ public function setUserProfile(?UserProfile $userProfile): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,4 @@ public function setUserProfile(UserProfile $userProfile): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ public function setUserProfile(?UserProfile $userProfile): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ public function setEmbeddedUser(?self $embeddedUser): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,4 @@ public function setUserProfile(?\App\OtherEntity\UserProfile $userProfile): self

return $this;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,4 @@ public function setCategory(?\App\OtherEntity\Category $category): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/add_property/User_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,4 @@ public function getId(): ?int
{
return $this->id;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/add_setter/User_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,4 @@ public function setFooProp(string $fooProp): self

return $this;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/source/UserProfile_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,4 @@ public function getId(): ?int
{
return $this->id;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/source/User_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,4 @@ public function getId(): ?int
{
return $this->id;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/source/User_some_props.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,4 @@ public function getFirstName()
// some custom comment
return $this->firstName;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/Util/fixtures/source/User_with_use_statements.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,4 @@ public function getId(): ?int
{
return $this->id;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityManyToMany/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,4 @@ public function setCreatedAt(?\DateTimeInterface $createdAt)
{
$this->createdAt = $createdAt;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityManyToOne/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,4 @@ public function setCreatedAt(?\DateTimeInterface $createdAt)
{
$this->createdAt = $createdAt;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityOneToOne/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,4 @@ public function setCreatedAt(?\DateTimeInterface $createdAt)
{
$this->createdAt = $createdAt;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityOverwrite/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,4 @@ public function setFirstName()
{
throw new \Exception('This does not work!');
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityRegenerate/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,4 @@ public function getCreatedAt(): ?\DateTimeInterface
{
return $this->createdAt;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityRegenerate/src/Entity/UserAvatar.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,4 @@ public function getId()
{
return $this->id;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,4 @@ public function setFirstName()
{
throw new \Exception('This does not work!');
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityRegenerateXml/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,4 @@ public function getId(): ?int
// custom comment
return $this->id;
}

// add your own fields
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,4 @@ public function getId()
{
return $this->id;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityUpdate/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,4 @@ public function setCreatedAt(?\DateTimeInterface $createdAt)
{
$this->createdAt = $createdAt;
}

// add your own fields
}
2 changes: 0 additions & 2 deletions tests/fixtures/MakeEntityXmlMappingError/src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,4 @@ public function getId(): ?int
// custom comment
return $this->id;
}

// add your own fields
}

0 comments on commit 16596b1

Please sign in to comment.