Skip to content

Commit eece3e9

Browse files
committed
refactor(CliqZoho): rename CliqZoho namespace to ZohoCliq
- Rename directory and files from `CliqZoho` to `ZohoCliq` to reflect updated naming convention - Update namespaces in all affected PHP files accordingly - Modify class inheritance in Message.php to extend from ZohoCliqWebHook namespace - Update README and usage example references to match new namespace and directory structure - Ensure consistency across client, authenticator, and message classes for the new ZohoCliq naming - Improve clarity and organization by adopting a more intuitive namespace structure Signed-off-by: guanguans <ityaozm@gmail.com>
1 parent 94f0855 commit eece3e9

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see https://github.com/guanguans/notify
1212
*/
1313

14-
namespace Guanguans\Notify\CliqZoho;
14+
namespace Guanguans\Notify\ZohoCliq;
1515

1616
use Guanguans\Notify\Foundation\Authenticators\NullAuthenticator;
1717
use Guanguans\Notify\Foundation\Concerns\AsFormParams;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see https://github.com/guanguans/notify
1212
*/
1313

14-
namespace Guanguans\Notify\CliqZoho;
14+
namespace Guanguans\Notify\ZohoCliq;
1515

1616
use Guanguans\Notify\Foundation\Middleware\Authenticate;
1717
use Guanguans\Notify\Foundation\Middleware\Response;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see https://github.com/guanguans/notify
1212
*/
1313

14-
namespace Guanguans\Notify\CliqZoho\Messages;
14+
namespace Guanguans\Notify\ZohoCliq\Messages;
1515

1616
use Guanguans\Notify\Foundation\Support\Arr;
1717

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see https://github.com/guanguans/notify
1212
*/
1313

14-
namespace Guanguans\Notify\CliqZoho\Messages;
14+
namespace Guanguans\Notify\ZohoCliq\Messages;
1515

1616
use Guanguans\Notify\Foundation\Support\Arr;
1717

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see https://github.com/guanguans/notify
1212
*/
1313

14-
namespace Guanguans\Notify\CliqZoho\Messages;
14+
namespace Guanguans\Notify\ZohoCliq\Messages;
1515

1616
use Guanguans\Notify\Foundation\Support\Arr;
1717

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see https://github.com/guanguans/notify
1212
*/
1313

14-
namespace Guanguans\Notify\CliqZoho\Messages;
14+
namespace Guanguans\Notify\ZohoCliq\Messages;
1515

1616
/**
1717
* @method self bot(array $bot)
@@ -21,4 +21,4 @@
2121
* @method self styles(array $styles)
2222
* @method self text(mixed $text)
2323
*/
24-
class Message extends \Guanguans\Notify\ZohoCliq\Messages\Message {}
24+
class Message extends \Guanguans\Notify\ZohoCliqWebHook\Messages\Message {}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @see https://github.com/guanguans/notify
1212
*/
1313

14-
namespace Guanguans\Notify\CliqZoho\Messages;
14+
namespace Guanguans\Notify\ZohoCliq\Messages;
1515

1616
use Guanguans\Notify\Foundation\Support\Arr;
1717

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# CliqZoho
1+
# ZohoCliq
22

3-
## [Usage example](./../../tests/CliqZoho/ClientTest.php)
3+
## [Usage example](./../../tests/ZohoCliq/ClientTest.php)
44

55
## Related links
66

0 commit comments

Comments
 (0)