Completed
Push — master ( 5dd2c5...039714 )
by ARCANEDEV
18s queued 11s
created

helpers.php ➔ hash_with()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
use Arcanedev\Hasher\Contracts\HashManager;
4
5
if ( ! function_exists('hasher')) {
6
    /**
7
     * Get the Hash Manager instance.
8
     *
9
     * @return \Arcanedev\Hasher\Contracts\HashManager
10
     */
11
    function hasher() {
12
        return app(HashManager::class);
13
    }
14
}
15