Completed
Push — master ( 710834...e5946b )
by Bernhard
09:12
created
src/Command/Pause.php 2 patches
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -118,8 +118,6 @@  discard block
 block discarded – undo
118 118
     /**
119 119
      * Assert that a given "resume" command makes sense
120 120
      *
121
-     * @param \Symfony\Component\Console\Input\InputInterface   $input  The command input
122
-     * @param \Symfony\Component\Console\Output\OutputInterface $output The command output
123 121
      *
124 122
      * @return void
125 123
      *
@@ -137,8 +135,6 @@  discard block
 block discarded – undo
137 135
     /**
138 136
      * Assert that a given "start" command makes sense
139 137
      *
140
-     * @param \Symfony\Component\Console\Input\InputInterface   $input  The command input
141
-     * @param \Symfony\Component\Console\Output\OutputInterface $output The command output
142 138
      *
143 139
      * @return void
144 140
      *
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * {@inheritDoc}
127 127
      * @see \Symfony\Component\Console\Command\Command::execute()
128 128
      */
129
-    protected function assertConsistentResume () {
129
+    protected function assertConsistentResume() {
130 130
         $storage = StorageFactory::getStorage();
131 131
         $lastBooking = $storage->retrieveLast(true);
132 132
         if ($lastBooking->getTicketId() !== PauseEntity::PAUSE_TAG_START) {
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      * {@inheritDoc}
146 146
      * @see \Symfony\Component\Console\Command\Command::execute()
147 147
      */
148
-    protected function assertConsistentPause () {
148
+    protected function assertConsistentPause() {
149 149
         $storage = StorageFactory::getStorage();
150 150
         $lastBooking = $storage->retrieveLast(true);
151 151
         if ($lastBooking->getTicketId() === PauseEntity::PAUSE_TAG_START) {
Please login to merge, or discard this patch.