@@ -48,7 +48,7 @@ public function setUp()
4848
4949 $ this ->Cookie = new Cookie ;
5050
51- $ Cookie = $ this ->Cookie ;
51+ $ cookie = $ this ->Cookie ;
5252
5353 $ this ->cookiePrefix = $ Cookie ::getCookiePrefix ();
5454 }
@@ -70,7 +70,7 @@ public function testIsInstanceOf()
7070 */
7171 public function testSetCookie ()
7272 {
73- $ Cookie = $ this ->Cookie ;
73+ $ cookie = $ this ->Cookie ;
7474
7575 $ this ->assertTrue ($ Cookie ::set ('cookie_name ' , 'value ' , 365 ));
7676 }
@@ -82,7 +82,7 @@ public function testSetCookie()
8282 */
8383 public function testGetCookie ()
8484 {
85- $ Cookie = $ this ->Cookie ;
85+ $ cookie = $ this ->Cookie ;
8686
8787 $ _COOKIE [$ this ->cookiePrefix . 'cookie_name ' ] = 'value ' ;
8888
@@ -96,7 +96,7 @@ public function testGetCookie()
9696 */
9797 public function testGetAllCookies ()
9898 {
99- $ Cookie = $ this ->Cookie ;
99+ $ cookie = $ this ->Cookie ;
100100
101101 $ _COOKIE [$ this ->cookiePrefix . 'cookie_name_one ' ] = 'value ' ;
102102 $ _COOKIE [$ this ->cookiePrefix . 'cookie_name_two ' ] = 'value ' ;
@@ -114,7 +114,7 @@ public function testGetAllCookies()
114114 */
115115 public function testGetAllCookiesNonExistents ()
116116 {
117- $ Cookie = $ this ->Cookie ;
117+ $ cookie = $ this ->Cookie ;
118118
119119 $ this ->assertFalse ($ Cookie ::get ());
120120 }
@@ -126,7 +126,7 @@ public function testGetAllCookiesNonExistents()
126126 */
127127 public function testPullCookie ()
128128 {
129- $ Cookie = $ this ->Cookie ;
129+ $ cookie = $ this ->Cookie ;
130130
131131 $ _COOKIE [$ this ->cookiePrefix . 'cookie_name ' ] = 'value ' ;
132132
@@ -140,7 +140,7 @@ public function testPullCookie()
140140 */
141141 public function testPullCookieNonExistent ()
142142 {
143- $ Cookie = $ this ->Cookie ;
143+ $ cookie = $ this ->Cookie ;
144144
145145 $ this ->assertFalse ($ Cookie ::pull ('cookie_name ' ));
146146 }
@@ -152,7 +152,7 @@ public function testPullCookieNonExistent()
152152 */
153153 public function testDestroyOneCookie ()
154154 {
155- $ Cookie = $ this ->Cookie ;
155+ $ cookie = $ this ->Cookie ;
156156
157157 $ _COOKIE [$ this ->cookiePrefix . 'cookie_name ' ] = 'value ' ;
158158
@@ -166,7 +166,7 @@ public function testDestroyOneCookie()
166166 */
167167 public function testDestroyOneCookieNonExistent ()
168168 {
169- $ Cookie = $ this ->Cookie ;
169+ $ cookie = $ this ->Cookie ;
170170
171171 $ this ->assertFalse ($ Cookie ::destroy ('cookie_name ' ));
172172 }
@@ -178,7 +178,7 @@ public function testDestroyOneCookieNonExistent()
178178 */
179179 public function testDestroyAllCookies ()
180180 {
181- $ Cookie = $ this ->Cookie ;
181+ $ cookie = $ this ->Cookie ;
182182
183183 $ _COOKIE [$ this ->cookiePrefix . 'cookie_name_one ' ] = 'value ' ;
184184 $ _COOKIE [$ this ->cookiePrefix . 'cookie_name_two ' ] = 'value ' ;
@@ -193,7 +193,7 @@ public function testDestroyAllCookies()
193193 */
194194 public function testDestroyAllCookiesNonExistents ()
195195 {
196- $ Cookie = $ this ->Cookie ;
196+ $ cookie = $ this ->Cookie ;
197197
198198 $ this ->assertFalse ($ Cookie ::destroy ());
199199 }
0 commit comments