phpcs fixes

This commit is contained in:
Dennis Eichhorn 2018-02-16 18:27:42 +01:00
parent 2fbf79bce0
commit e90ad9477a
5 changed files with 15 additions and 7 deletions

View File

@ -109,6 +109,8 @@ class HttpSession implements SessionInterface
/** /**
* Set Csrf protection for forms. * Set Csrf protection for forms.
*
* @return void
* *
* @since 1.0.0 * @since 1.0.0
*/ */

View File

@ -81,7 +81,7 @@ interface SessionInterface
public function getSID(); public function getSID();
/** /**
* @param int|string $sid * @param int|string $sid Session id
* *
* @return void * @return void
* *

View File

@ -151,7 +151,7 @@ class Location implements \JsonSerializable, \Serializable
/** /**
* Set postal or zip code * Set postal or zip code
* *
* @param string $postal * @param string $postal Postal code
* *
* @return void * @return void
* *
@ -177,7 +177,7 @@ class Location implements \JsonSerializable, \Serializable
/** /**
* Set city name * Set city name
* *
* @param string $city * @param string $city City name
* *
* @return void * @return void
* *
@ -203,7 +203,7 @@ class Location implements \JsonSerializable, \Serializable
/** /**
* Set country code * Set country code
* *
* @param string $country * @param string $country Country name
* *
* @return void * @return void
* *
@ -229,7 +229,7 @@ class Location implements \JsonSerializable, \Serializable
/** /**
* Set address * Set address
* *
* @param string $address * @param string $address Address
* *
* @return void * @return void
* *
@ -255,7 +255,7 @@ class Location implements \JsonSerializable, \Serializable
/** /**
* Set state name * Set state name
* *
* @param string $state * @param string $state State name
* *
* @return void * @return void
* *
@ -281,7 +281,7 @@ class Location implements \JsonSerializable, \Serializable
/** /**
* Set geo location * Set geo location
* *
* @param float[] $geo * @param float[] $geo Geo location lat/long
* *
* @return void * @return void
* *

View File

@ -34,6 +34,8 @@ final class Huffman
/** /**
* Remove dictionary * Remove dictionary
*
* @return void
* *
* @since 1.0.0 * @since 1.0.0
*/ */
@ -58,6 +60,8 @@ final class Huffman
* Set dictionary * Set dictionary
* *
* @param Dictionary $dictionary Huffman dictionary * @param Dictionary $dictionary Huffman dictionary
*
* @return void
* *
* @since 1.0.0 * @since 1.0.0
*/ */

View File

@ -68,6 +68,8 @@ class Tag
* Set tag name * Set tag name
* *
* @param string $message Tag message * @param string $message Tag message
*
* @return void
* *
* @since 1.0.0 * @since 1.0.0
*/ */