-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from tkaratug/dev
v2.2.0 Updates
- Loading branch information
Showing
23 changed files
with
454 additions
and
5,812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
/************************************************* | ||
* Titan-2 Mini Framework | ||
* Facade of Jwt Library | ||
* | ||
* Author : Turan Karatuğ | ||
* Web : http://www.titanphp.com | ||
* Docs : http://kilavuz.titanphp.com | ||
* Github : http://github.com/tkaratug/titan2 | ||
* License : MIT | ||
* | ||
*************************************************/ | ||
namespace System\Facades; | ||
|
||
use System\Facades\Facade; | ||
|
||
class Jwt extends Facade | ||
{ | ||
|
||
/** | ||
* Get the registered name of the component. | ||
* | ||
* @param string | ||
*/ | ||
protected static function getFacadeAccessor() | ||
{ | ||
return 'Jwt'; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/************************************************* | ||
* Titan-2 Mini Framework | ||
* Date Object's English Language File | ||
* | ||
* Author : Turan Karatuğ | ||
* Web : http://www.titanphp.com | ||
* Docs : http://kilavuz.titanphp.com | ||
* Github : http://github.com/tkaratug/titan2 | ||
* License : MIT | ||
* | ||
*************************************************/ | ||
$lang['date']['just'] = 'Just'; | ||
$lang['date']['seconds_ago'] = '%s Seconds Ago'; | ||
$lang['date']['minutes_ago'] = '%s Minute(s) Ago'; | ||
$lang['date']['hours_ago'] = '%s Hour(s) Ago'; | ||
$lang['date']['days_ago'] = '%s Day(s) Ago'; | ||
$lang['date']['weeks_ago'] = '%s Week(s) Ago'; | ||
$lang['date']['months_ago'] = '%s Month(s) Ago'; | ||
$lang['date']['years_ago'] = '%s Year(s) Ago'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/************************************************* | ||
* Titan-2 Mini Framework | ||
* Date Object's Turkish Language File | ||
* | ||
* Author : Turan Karatuğ | ||
* Web : http://www.titanphp.com | ||
* Docs : http://kilavuz.titanphp.com | ||
* Github : http://github.com/tkaratug/titan2 | ||
* License : MIT | ||
* | ||
*************************************************/ | ||
$lang['date']['just'] = 'Az Önce'; | ||
$lang['date']['seconds_ago'] = '%s Saniye Önce'; | ||
$lang['date']['minutes_ago'] = '%s Dakika Önce'; | ||
$lang['date']['hours_ago'] = '%s Saat Önce'; | ||
$lang['date']['days_ago'] = '%s Gün Önce'; | ||
$lang['date']['weeks_ago'] = '%s Hafta Önce'; | ||
$lang['date']['months_ago'] = '%s Ay Önce'; | ||
$lang['date']['years_ago'] = '%s Yıl Önce'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.