forked from Napp/AeroGear-Push
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change namespace from Napp to Napp\AeroGearPush
- Loading branch information
Showing
18 changed files
with
88 additions
and
73 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 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
], | ||
"autoload": { | ||
"psr-4": { | ||
"Napp\\": "src/" | ||
"Napp\\AeroGearPush\\": "src/" | ||
} | ||
}, | ||
"require": { | ||
|
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 |
---|---|---|
|
@@ -8,15 +8,15 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Client; | ||
namespace Napp\AeroGearPush\Client; | ||
|
||
use GuzzleHttp\Client; | ||
use Symfony\Component\HttpFoundation\JsonResponse; | ||
|
||
/** | ||
* Class curlClient | ||
* | ||
* @package Napp\Client | ||
* @package Napp\AeroGearPush\Client | ||
* @author Hasse Ramlev Hansen <[email protected]>] | ||
*/ | ||
class curlClient | ||
|
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 |
---|---|---|
|
@@ -7,12 +7,12 @@ | |
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Napp\Exception; | ||
namespace Napp\AeroGearPush\Exception; | ||
|
||
/** | ||
* Class AeroGearPushException | ||
* | ||
* @package Napp\Exception | ||
* @package Napp\AeroGearPush\Exception | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class AeroGearPushException extends \Exception | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class abstractApplicationRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class abstractApplicationRequest | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class createAndroidVariantRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class createAndroidVariantRequest extends abstractApplicationRequest | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class createApplicationRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class createApplicationRequest extends abstractApplicationRequest | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class createIosVariantRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class createIosVariantRequest extends abstractApplicationRequest | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class createSimplePushVariantRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class createSimplePushVariantRequest extends abstractApplicationRequest | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class deleteApplicationRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class deleteApplicationRequest extends abstractApplicationRequest | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class getApplicationInstallationRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class getApplicationInstallationRequest extends abstractApplicationRequest | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Napp\Request; | ||
namespace Napp\AeroGearPush\Request; | ||
|
||
/** | ||
* Class getApplicationRequest | ||
* | ||
* @package Napp\Request | ||
* @package Napp\AeroGearPush\Request | ||
* @author Hasse Ramlev Hansen <[email protected]> | ||
*/ | ||
class getApplicationRequest extends abstractApplicationRequest | ||
|
Oops, something went wrong.