Completed
Pull Request — master (#29)
by
unknown
02:16
created
src/Loader.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -54,6 +54,7 @@
 block discarded – undo
54 54
    *   This is the path of the composer.json file that triggered the bootstrap.
55 55
    * @param TokenResolverFactoryInterface $token_resolver_factory
56 56
    *   Factory object to create token resolvers.
57
+   * @param string $seed
57 58
    */
58 59
   public function __construct($seed, TokenResolverFactoryInterface $token_resolver_factory = NULL) {
59 60
     $this->seed = $seed;
Please login to merge, or discard this patch.
src/LoaderInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
    * Sets the class map.
26 26
    *
27 27
    * @param array $class_map
28
+   * @return void
28 29
    */
29 30
   public function setClassMap(array $class_map);
30 31
 
@@ -32,6 +33,7 @@  discard block
 block discarded – undo
32 33
    * Sets the PSR class map.
33 34
    *
34 35
    * @param array[] $class_map
36
+   * @return void
35 37
    */
36 38
   public function setPsrClassMap(array $class_map);
37 39
 
@@ -39,6 +41,7 @@  discard block
 block discarded – undo
39 41
    * Sets the seed path.
40 42
    *
41 43
    * @param string $seed.
44
+   * @return void
42 45
    */
43 46
   public function setSeed($seed);
44 47
 
Please login to merge, or discard this patch.