Skip to content
This repository has been archived by the owner on Jun 25, 2018. It is now read-only.

Commit

Permalink
thanks travis bis
Browse files Browse the repository at this point in the history
  • Loading branch information
romainnorberg committed Apr 17, 2017
1 parent e7cc7d2 commit 010ad28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/AppBundle/Entity/ProjectType.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ class ProjectType
*
* @var File
*/
private $image_file;
private $imageFile;

/**
* @ORM\Column(type="string", length=255, nullable=true)
*
* @var string
*/
private $image_name;
private $imageName;

/**
* @var ArrayCollection
Expand Down Expand Up @@ -302,7 +302,7 @@ public function getImageFile()
*/
public function setImageName($imageName)
{
$this->image_name = $imageName;
$this->imageName = $imageName;

return $this;
}
Expand All @@ -314,7 +314,7 @@ public function setImageName($imageName)
*/
public function getImageName()
{
return $this->image_name;
return $this->imageName;
}

/**
Expand Down

0 comments on commit 010ad28

Please sign in to comment.