Skip to content

Commit dbed3a8

Browse files
author
Ben Wilkins
committed
Changing namespaces.
1 parent 48fa414 commit dbed3a8

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/Exceptions/NotifierNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace EEException\Notifier;
3+
namespace CodebaseNotifier\Notifier;
44

55
class NotifierNotFoundException extends \Exception
66
{

src/Notifier/Airbrake.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace EEException\Notifier;
3+
namespace CodebaseNotifier\Notifier;
44

55
require_once(realpath(__DIR__).'/NotifierInterface.php');
66
require_once(realpath(__DIR__).'/../vendor/php-airbrake/src/Airbrake/Client.php');

src/Notifier/NotifierFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace EEException\Notifier;
3+
namespace CodebaseNotifier\Notifier;
44

55
require_once(realpath(__DIR__) . '/NotifierInterface.php');
66
require_once(realpath(__DIR__) . '/Airbrake.php');

src/Notifier/NotifierInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace EEException\Notifier;
3+
namespace CodebaseNotifier\Notifier;
44

55
interface NotifierInterface
66
{

src/Notifier/SystemEmail.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace EEException\Notifier;
3+
namespace CodebaseNotifier\Notifier;
44

55
require_once(realpath(__DIR__).'/NotifierInterface.php');
66

77
class SystemEmail implements NotifierInterface
88
{
99
protected $_email_config = array(
1010
'recipients' => array('[email protected]'),
11-
'subject' => 'Testing EEException SystemEmail',
11+
'subject' => 'Testing CodebaseNotifier SystemEmail',
1212
'message' => ''
1313
);
1414

src/UseCases/SendErrorString.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?php
22

3-
namespace EEException\UseCases;
3+
namespace CodebaseNotifier\UseCases;
44

55
require_once(realpath(__DIR__) . '/../Notifier/Airbrake.php');
66

77
class SendErrorString
88
{
99
/**
10-
* @var \EEException\Notifier\NotifierInterface
10+
* @var \CodebaseNotifier\Notifier\NotifierInterface
1111
*/
1212
private $_notifier;
1313

1414
/**
15-
* @param \EEException\Notifier\NotifierInterface $_notifier
15+
* @param \CodebaseNotifier\Notifier\NotifierInterface $_notifier
1616
*/
17-
function __construct(\EEException\Notifier\NotifierInterface $_notifier)
17+
function __construct(\CodebaseNotifier\Notifier\NotifierInterface $_notifier)
1818
{
1919
$this->_notifier = $_notifier;
2020
}

0 commit comments

Comments
 (0)