Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated methods #19

Merged
merged 1 commit into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'paths' => [
Hyde\Framework\Hyde::viewPath(),
resource_path('views'),
],

'compiled' => env(
Expand Down
26 changes: 0 additions & 26 deletions src/Hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,32 +21,6 @@ public static function version(): string
return InstalledVersions::getVersion('hyde/hyde') ?: 'unreleased';
}

/**
* Is Torchlight enabled?
*
* @deprecated v0.4.1 will be moved into the Features class
*
* Torchlight is an API for Syntax Highlighting. By default, it is enabled
* automatically when an API token is set in the .env file.
* @return bool
*/
public static function hasTorchlight(): bool
{
return (config('torchlight.token') !== null);
}

/**
* Return the path where the Blade views are located
*
* @deprecated v0.4.1 as it is not needed
*
* @return string
*/
public static function viewPath()
{
return resource_path('views') ;
}

/**
* Get the subdirectory documentation files are stored in
* @return string
Expand Down