Issues (2884)

src/App/Dialog/Library/DialogLibraryInterface.php (9 issues)

1
<?php
2
3
/**
4
 * DialogLibraryInterface.php
5
 *
6
 * @package jaxon-core
0 ignored issues
show
Package name "jaxon-core" is not valid; consider "Jaxoncore" instead
Loading history...
7
 * @author Thierry Feuzeu <[email protected]>
8
 * @copyright 2016 Thierry Feuzeu <[email protected]>
9
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
10
 * @link https://github.com/jaxon-php/jaxon-dialogs
11
 */
0 ignored issues
show
PHP version not specified
Loading history...
Missing @category tag in file comment
Loading history...
12
13
namespace Jaxon\App\Dialog\Library;
14
15
use Jaxon\Response\Response;
16
17
interface DialogLibraryInterface
0 ignored issues
show
Missing doc comment for interface DialogLibraryInterface
Loading history...
18
{
19
    /**
20
     * Set the response to attach the messages to.
21
     *
22
     * @param Response $xResponse    Whether to return the code
0 ignored issues
show
Expected 1 spaces after parameter name; 4 found
Loading history...
23
     *
24
     * @return void
25
     */
26
    public function setResponse(Response $xResponse);
0 ignored issues
show
Expected 2 blank lines before function; 0 found
Loading history...
Expected 2 blank lines after function; 1 found
Loading history...
27
28
    /**
29
     * @param bool $bReturnCode
0 ignored issues
show
Missing parameter comment
Loading history...
30
     *
31
     * @return void
32
     */
33
    public function setReturnCode(bool $bReturnCode);
0 ignored issues
show
Expected 2 blank lines after function; 0 found
Loading history...
34
}
35