Completed
Pull Request — master (#192)
by
unknown
01:48
created
Tests/View/TranslatedViewTest.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -104,6 +104,9 @@  discard block
 block discarded – undo
104 104
         $this->assertRender($options);
105 105
     }
106 106
 
107
+    /**
108
+     * @param integer $at
109
+     */
107 110
     private function translatorExpectsPreviousAt($at)
108 111
     {
109 112
         $previous = $this->previous();
@@ -115,6 +118,9 @@  discard block
 block discarded – undo
115 118
             ->will($this->returnValue($previous));
116 119
     }
117 120
 
121
+    /**
122
+     * @param integer $at
123
+     */
118 124
     private function translatorExpectsNextAt($at)
119 125
     {
120 126
         $next = $this->next();
@@ -176,8 +182,14 @@  discard block
 block discarded – undo
176 182
         return $this->buildNextMessage($this->next());
177 183
     }
178 184
 
185
+    /**
186
+     * @param string $text
187
+     */
179 188
     abstract protected function buildPreviousMessage($text);
180 189
 
190
+    /**
191
+     * @param string $text
192
+     */
181 193
     abstract protected function buildNextMessage($text);
182 194
 
183 195
     public function testGetNameShouldReturnTheName()
Please login to merge, or discard this patch.