djunehor/laravel-bible

View on GitHub
src/Helpers/helpers.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

if (! function_exists('bible')) {
    function bible($passage): string
    {
        return (new \Djunehor\Logos\Bible())->get($passage);
    }
}