Completed
Push — master ( 2908eb...49ce83 )
by Freek
10s
created

ArgumentValueProvider::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Spatie\MailableTest;
4
5
interface ArgumentValueProvider
6
{
7
    /**
8
     * @param string $mailableClass
9
     * @param string $argumentName
10
     * @param string $argumentType
11
     * @param string|null $defaultValue
12
     *
13
     * @return mixed
14
     */
15
    public function getValue(string $mailableClass, string $argumentName, string $argumentType = '', $defaultValue = null);
16
}
17