Skip to content

Commit 23e2352

Browse files
committed
[fix] added missed exception classes
1 parent 4dc47dc commit 23e2352

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ composer require tartan/laravel-iranian-sms
2020

2121
4.Publish the config file
2222
```bash
23-
php artisan vendor:publish --tag=config
23+
php artisan vendor:publish --provider="Tartan\IranianSms\SmsServiceProvider" --tag=config
2424
```
2525

2626

src/Adapters/Exception.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
4+
namespace Tartan\IranianSms\Adapters;
5+
use Tartan\IranianSms\Exception as RootException;
6+
7+
class Exception extends RootException
8+
{
9+
10+
}

src/Exception.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
4+
namespace Tartan\IranianSms;
5+
6+
7+
class Exception extends \Exception
8+
{
9+
10+
}

0 commit comments

Comments
 (0)