Added documentation

This commit is contained in:
Michael 2017-12-20 10:34:42 +00:00
parent 343f22e02f
commit cdce9b48ab
1 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,8 @@ class Thread extends BaseObject
* Constructor * Constructor
* *
* @param string $mode The mode * @param string $mode The mode
* @param boolean $preview boolean value * @param boolean $preview Are we in the preview mode?
* @param boolean $writable Override the writable check
*/ */
public function __construct($mode, $preview, $writable = false) public function __construct($mode, $preview, $writable = false)
{ {
@ -39,6 +40,7 @@ class Thread extends BaseObject
* Set the mode we'll be displayed on * Set the mode we'll be displayed on
* *
* @param string $mode The mode to set * @param string $mode The mode to set
* @param boolean $writable Override the writable check
* *
* @return void * @return void
*/ */