Skip to content

Commit

Permalink
Adding Types and Documentation to Facades
Browse files Browse the repository at this point in the history
  • Loading branch information
vbasky committed Feb 15, 2021
1 parent 68ae54e commit 798913c
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 73 deletions.
8 changes: 7 additions & 1 deletion src/Facades/IndicScript.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@

use Illuminate\Support\Facades\Facade;

/**
* @method static string transliterate(string $data, string $from, string $to, $options = null)
* @method static bool isDevanagari($data)
*
* */

class IndicScript extends Facade
{
protected static function getFacadeAccessor()
protected static function getFacadeAccessor(): string
{
return 'indicscript';
}
Expand Down
Loading

0 comments on commit 798913c

Please sign in to comment.