-
-
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.
Add ExceptionHandler to view errors clearly , minor changes and optim…
…ized
- Loading branch information
Showing
8 changed files
with
179 additions
and
119 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
<?php | ||
/* | ||
* | ||
* * ------------------------------------------------------------- | ||
* * Copyright (c) 2020 | ||
* * -All Rights Preserved By Ariful Islam | ||
* * www.phpdark.com | ||
* * -If you have any query then knock me at | ||
* * [email protected] | ||
* * See my profile @ https://github.com/arif98741 | ||
* * ---------------------------------------------------------------- | ||
* ------------------------------------------------------------- | ||
* Copyright (c) 2020 | ||
* -All Rights Preserved By Ariful Islam | ||
* -If you have any query then knock me at | ||
* [email protected] | ||
* See my profile @ https://github.com/arif98741 | ||
* ---------------------------------------------------------------- | ||
* | ||
*/ | ||
|
||
namespace UnitTestFiles\Test; | ||
|
||
|
||
use Exception; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class FunctionalityTest extends TestCase | ||
{ | ||
/** | ||
* @throws Exception | ||
*/ | ||
public function testTrueAssetsToTrue() | ||
{ | ||
$condition = true; | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
<?php | ||
/* | ||
* | ||
* * ------------------------------------------------------------- | ||
* * Copyright (c) 2020 | ||
* * -created by Ariful Islam | ||
* * -All Rights Preserved By | ||
* * Ariful Islam | ||
* * www.phpdark.com | ||
* * -If you have any query then knock me at | ||
* * [email protected] | ||
* * See my profile @ https://github.com/arif98741 | ||
* * ---------------------------------------------------------------- | ||
* | ||
* ------------------------------------------------------------- | ||
* Copyright (c) 2020 | ||
* -All Rights Preserved By Ariful Islam | ||
* -If you have any query then knock me at | ||
* [email protected] | ||
* See my profile @ https://github.com/arif98741 | ||
* ---------------------------------------------------------------- | ||
*/ | ||
|
||
namespace NagadApi; | ||
|
Oops, something went wrong.