1 | <?php |
||
5 | class COBUnknownBlock extends COBBlock { |
||
6 | |||
7 | /// @cond INTERNAL_DOCS |
||
8 | |||
9 | private $contents; |
||
10 | |||
11 | /// @endcond |
||
12 | |||
13 | /// @brief Creates a new COBUnknown block with the given type and contents |
||
14 | /** |
||
15 | * @param $type The four-character type of the block |
||
16 | * @param $contents The contents of the block |
||
17 | */ |
||
18 | public function COBUnknownBlock($type, $contents) { |
||
21 | |||
22 | /// @brief Returns the raw data back again |
||
23 | /** @return string |
||
24 | */ |
||
25 | public function Compile() { |
||
28 | |||
29 | /// @brief Gets the block's contents |
||
30 | public function GetContents() { |
||
33 | } |
||
34 | ?> |
||
35 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.