-
-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #320 from phansys/ticket_318
[#318] Add conflict with "doctrine/dbal:2.7.0"
- Loading branch information
Showing
3 changed files
with
72 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
tests/SimpleThings/Tests/EntityAudit/Fixtures/Issue/Issue318User.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
namespace SimpleThings\EntityAudit\Tests\Fixtures\Issue; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* @ORM\Entity | ||
*/ | ||
class Issue318User | ||
{ | ||
/** @ORM\Id @ORM\Column(type="integer") @ORM\GeneratedValue(strategy="AUTO") */ | ||
private $id; | ||
|
||
/** | ||
* @var string | ||
* @ORM\Column(type="string", nullable=false, length=255) | ||
*/ | ||
protected $alias; | ||
|
||
public function getId() | ||
{ | ||
return $this->id; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getAlias() | ||
{ | ||
return $this->alias; | ||
} | ||
|
||
/** | ||
* @param string $alias | ||
* @return self | ||
*/ | ||
public function setAlias($alias) | ||
{ | ||
$this->alias = $alias; | ||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters