The doc-type int; could not be parsed: Expected "|" or "end of type", but got ";" at position 3. (view supported doc-types)
This check marks PHPDoc comments that could not be parsed by our parser. To see
which comment annotations we can parse, please refer to our documentation on
supported doc-types.
Loading history...
14
*/
15
public function getSort();
16
17
/**
18
* Called before any calls to connectTo
19
*
20
* @return void
21
*/
22
public function preConnect();
23
24
/**
25
* Connects the mode
26
*
27
* @param string $mode
28
* @return void
29
*/
30
public function connectTo($mode);
31
32
/**
33
* Called after all calls to connectTo
34
*
35
* @return void
36
*/
37
public function postConnect();
38
39
/**
40
* Check if given mode is accepted inside this mode
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.