Skip to content

Commit

Permalink
Merge pull request #19 from hydephp/Remove-deprecated-methods
Browse files Browse the repository at this point in the history
Remove deprecated methods
  • Loading branch information
caendesilva authored Mar 25, 2022
2 parents 8307b65 + 2ae89d7 commit 67266ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 27 deletions.
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

0 comments on commit 67266ed

Please sign in to comment.