Skip to content

Commit

Permalink
Merge pull request #1275 from hydephp/remove-default-values-from-hyde…
Browse files Browse the repository at this point in the history
…-facade-method-annotations

Remove default values from Hyde facade method annotations
  • Loading branch information
caendesilva authored Mar 14, 2023
2 parents b097c1b + 6d0383b commit cfbab6c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ This serves two purposes:

### Removed
- Removed IDE helpers for removed global variables from the IDE helper file. https://github.com/hydephp/develop/pull/1274
- Removed default values from Hyde facade method annotations

### Fixed
- for any bug fixes.
Expand Down
12 changes: 6 additions & 6 deletions packages/framework/src/Hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @copyright 2022 Caen De Silva
* @license MIT License
*
* @method static string path(string $path = '') $basePath
* @method static string path(string $path = '')
* @method static string vendorPath(string $path = '', string $package = 'framework')
* @method static string pathToAbsolute(string $path)
* @method static string pathToRelative(string $path)
Expand All @@ -43,11 +43,11 @@
* @method static string trimSlashes(string $string)
* @method static HtmlString markdown(string $text, bool $stripIndentation = false)
* @method static string currentPage()
* @method static string getBasePath() $basePath
* @method static string getSourceRoot() ''
* @method static string getOutputDirectory() '_site'
* @method static string getMediaDirectory() '_media'
* @method static string getMediaOutputDirectory() 'media'
* @method static string getBasePath()
* @method static string getSourceRoot()
* @method static string getOutputDirectory()
* @method static string getMediaDirectory()
* @method static string getMediaOutputDirectory()
* @method static Features features()
* @method static FileCollection files()
* @method static PageCollection pages()
Expand Down

0 comments on commit cfbab6c

Please sign in to comment.