-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNullable.php
More file actions
34 lines (30 loc) · 753 Bytes
/
Nullable.php
File metadata and controls
34 lines (30 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Copyright (c) 2018 Webbing Brasil (http://www.webbingbrasil.com.br)
* All Rights Reserved
*
* This file is part of the NomadLog Portal project.
*
* @project NomadLog Portal
* @file Null.php
* @author Danilo Andrade <danilo@webbingbrasil.com.br>
* @date 04/04/18 at 14:57
* @copyright Copyright (c) 2018 Webbing Brasil (http://www.webbingbrasil.com.br)
*/
namespace App\MathParser;
use App\MathParser\Contracts\ExpressionContract;
use App\MathParser\Contracts\NullContract;
/**
* Class Nullable
* @package App\MathParser
*/
class Nullable extends Expression implements NullContract, ExpressionContract
{
/**
* @return string
*/
public function operate()
{
return $this->value;
}
}