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

ArgumentValueProvider::getModelInstance()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 5
nc 4
nop 4
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