Completed
Push — master ( 359f1d...544858 )
by Casey
01:25
created
example/src/ExampleCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function __construct(Example $example)
55 55
     {
56
-      $this->example = $example;
57
-      parent::__construct();
56
+        $this->example = $example;
57
+        parent::__construct();
58 58
     }
59 59
 
60 60
     /**
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
             $data = $this->example->getBasicInformation();
80 80
             $output->writeln("Basic information: ");
81 81
             foreach ($data as $key => $value) {
82
-              $line = $formatter->formatSection($key, $value);
83
-              $output->writeln($line);
82
+                $line = $formatter->formatSection($key, $value);
83
+                $output->writeln($line);
84 84
             }
85 85
         }
86 86
 
Please login to merge, or discard this patch.
src/Phpoaipmh/RecordIterator.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,6 +84,7 @@  discard block
 block discarded – undo
84 84
      * @param ClientInterface $client  The client to use
85 85
      * @param string          $verb    The verb to use when retrieving results from the client
86 86
      * @param array           $params  Optional parameters passed to OAI-PMH
87
+     * @param string $resumptionToken
87 88
      */
88 89
     public function __construct(ClientInterface $client, $verb, array $params = array(), $resumptionToken = null)
89 90
     {
@@ -102,7 +103,7 @@  discard block
 block discarded – undo
102 103
     /**
103 104
      * Get the total number of requests made during this run
104 105
      *
105
-     * @return int The number of HTTP requests made
106
+     * @return boolean The number of HTTP requests made
106 107
      */
107 108
     public function getNumRequests()
108 109
     {
@@ -259,7 +260,7 @@  discard block
 block discarded – undo
259 260
      *
260 261
      * Map the item node name based on the verb
261 262
      *
262
-     * @return string|boolean The element name for the mapping, or false if unmapped
263
+     * @return string|false The element name for the mapping, or false if unmapped
263 264
      */
264 265
     private function getItemNodeName()
265 266
     {
Please login to merge, or discard this patch.