Completed
Push — master ( 517449...79df4d )
by Jelle
03:13
created
src/Entity/EntityManagerConsumerInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,5 +16,9 @@
 block discarded – undo
16 16
  * @author Jelle Sebreghts
17 17
  */
18 18
 interface ProxyInterface extends EntityInterface, EntityManagerConsumerInterface {
19
+
20
+  /**
21
+   * @return void
22
+   */
19 23
   public function setSportsDbClient(TheSportsDbClientInterface $sportsDbClient);
20 24
 }
Please login to merge, or discard this patch.
src/Entity/Repository/RepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
    *
26 26
    * @param \TheSportsDb\Entity\LeagueInterface $league
27 27
    *   The league to add.
28
+   * @return void
28 29
    */
29 30
   public function addLeague(LeagueInterface $league);
30 31
 }
Please login to merge, or discard this patch.
src/Entity/EntityManager.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -130,6 +130,7 @@
 block discarded – undo
130 130
 
131 131
   /**
132 132
    * {@inheritdoc}
133
+   * @param string $entityType
133 134
    */
134 135
   public function getPropertyMapDefinition($entityType) {
135 136
     if (!isset($this->propertyMapDefinitions[$entityType])) {
Please login to merge, or discard this patch.