This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move entities into unified namespace
- Loading branch information
Showing
56 changed files
with
158 additions
and
132 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
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
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
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 |
---|---|---|
@@ -1,15 +1,16 @@ | ||
<?php | ||
|
||
namespace Librecores\ProjectRepoBundle\Entity; | ||
namespace App\Entity; | ||
|
||
use Doctrine\Common\Collections\ArrayCollection; | ||
use Doctrine\Common\Collections\Collection; | ||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* A classification hierarchy for the projects | ||
* | ||
* This class contains classification categories that can be use to classify a project | ||
* for better categorization | ||
* This class contains classification categories that can be use to classify a | ||
* project for better categorization | ||
* | ||
* @author Sandip Kumar Bhuyan <[email protected]> | ||
* | ||
|
@@ -130,7 +131,7 @@ public function setName($name) | |
/** | ||
* Add child category | ||
* | ||
* @param \Librecores\ProjectRepoBundle\Entity\ClassificationHierarchy $child | ||
* @param ClassificationHierarchy $child | ||
* | ||
* @return ClassificationHierarchy | ||
*/ | ||
|
@@ -144,7 +145,7 @@ public function addChild(ClassificationHierarchy $child) | |
/** | ||
* Remove child category | ||
* | ||
* @param \Librecores\ProjectRepoBundle\Entity\ClassificationHierarchy $child | ||
* @param ClassificationHierarchy $child | ||
*/ | ||
public function removeChild(ClassificationHierarchy $child) | ||
{ | ||
|
@@ -154,7 +155,7 @@ public function removeChild(ClassificationHierarchy $child) | |
/** | ||
* Get children category | ||
* | ||
* @return \Doctrine\Common\Collections\Collection | ||
* @return Collection | ||
*/ | ||
public function getChildren() | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
...cores/ProjectRepoBundle/Entity/Commit.php → site/src/App/Entity/Commit.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
2 changes: 1 addition & 1 deletion
2
.../ProjectRepoBundle/Entity/Contributor.php → site/src/App/Entity/Contributor.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
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
2 changes: 1 addition & 1 deletion
2
...ProjectRepoBundle/Entity/LanguageStat.php → site/src/App/Entity/LanguageStat.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
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
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
2 changes: 1 addition & 1 deletion
2
...poBundle/Entity/ProjectClassification.php → .../src/App/Entity/ProjectClassification.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
2 changes: 1 addition & 1 deletion
2
...ojectRepoBundle/Entity/ProjectRelease.php → site/src/App/Entity/ProjectRelease.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
namespace Librecores\ProjectRepoBundle\Entity; | ||
namespace App\Entity; | ||
|
||
use DateTime; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...s/ProjectRepoBundle/Entity/SourceRepo.php → site/src/App/Entity/SourceRepo.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
2 changes: 1 addition & 1 deletion
2
.../ProjectRepoBundle/Entity/SourceStats.php → site/src/App/Entity/SourceStats.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
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
Oops, something went wrong.