VOFloatable::toVOFloat()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
3
namespace BestServedCold\PhalueObjects\Contract;
4
5
use BestServedCold\PhalueObjects\VOFloat;
6
7
/**
8
 * Interface VOFloatable
9
 *
10
 * @package BestServedCold\PhalueObjects\Contract
11
 */
12
interface VOFloatable extends Floatable
0 ignored issues
show
Coding Style introduced by
VOFloatable does not seem to conform to the naming convention (^[A-Z][a-zA-Z0-9]*Interface$).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
13
{
14
    /**
15
     * @return static
16
     */
17
    public static function fromVOFloat(VOFloat $voFloat);
18
19
    /**
20
     * @return VOFloat
21
     */
22
    public function toVOFloat();
23
}
24