File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ public function setPath($path)
104
104
}
105
105
106
106
/**
107
- * @return string
107
+ * @return string|null
108
108
*/
109
109
public function getPath ()
110
110
{
@@ -126,7 +126,7 @@ public function setDomain($domain)
126
126
}
127
127
128
128
/**
129
- * @return string
129
+ * @return string|null
130
130
*/
131
131
public function getDomain ()
132
132
{
@@ -144,7 +144,7 @@ public function setExpiry($expiry)
144
144
}
145
145
146
146
/**
147
- * @return int
147
+ * @return int|null
148
148
*/
149
149
public function getExpiry ()
150
150
{
@@ -162,7 +162,7 @@ public function setSecure($secure)
162
162
}
163
163
164
164
/**
165
- * @return bool
165
+ * @return bool|null
166
166
*/
167
167
public function isSecure ()
168
168
{
@@ -180,7 +180,7 @@ public function setHttpOnly($httpOnly)
180
180
}
181
181
182
182
/**
183
- * @return bool
183
+ * @return bool|null
184
184
*/
185
185
public function isHttpOnly ()
186
186
{
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public function deleteCookieNamed($name)
90
90
* Get the cookie with a given name.
91
91
*
92
92
* @param string $name
93
- * @return Cookie The cookie, or null if no cookie with the given name is presented.
93
+ * @return Cookie|null The cookie, or null if no cookie with the given name is presented.
94
94
*/
95
95
public function getCookieNamed ($ name )
96
96
{
You can’t perform that action at this time.
0 commit comments