forked from ntidev/SyncBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding improved synchronization process
- Loading branch information
Benjamin Vison
committed
May 6, 2018
1 parent
d540715
commit 36c73b5
Showing
4 changed files
with
63 additions
and
55 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace NTI\SyncBundle\Annotations; | ||
use Doctrine\Common\Annotations\Annotation\Required; | ||
|
||
/** | ||
* Class SyncParent | ||
* @package NTI\SyncBundle\Annotations | ||
* @Annotation | ||
*/ | ||
class SyncParent { | ||
/** | ||
* @var string | ||
* @Required() | ||
*/ | ||
public $getter; | ||
} |
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
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,6 @@ | ||
<?php | ||
|
||
namespace NTI\SyncBundle\Interfaces; | ||
|
||
interface SyncEntityInterface { | ||
} |
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