-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improve namespace and variables naming (#65)
* refactor: improve namespace naming * refactor: add prefix to styles * refactor: add prefix to forms and some variables * fix: follow the phpcs conventions * refactor: add openedx preffix to enrollment_order_id and enrollment_request_type
- Loading branch information
Showing
18 changed files
with
212 additions
and
212 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
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
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
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
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 |
---|---|---|
|
@@ -14,12 +14,12 @@ | |
* @author eduNEXT <[email protected]> | ||
*/ | ||
|
||
namespace App; | ||
namespace OpenedXCommerce; | ||
|
||
use App\admin\Openedx_Commerce_Admin; | ||
use App\public\Openedx_Commerce_Public; | ||
use App\admin\views\Openedx_Commerce_Settings; | ||
use App\model\Openedx_Commerce_Enrollment; | ||
use OpenedXCommerce\admin\Openedx_Commerce_Admin; | ||
use OpenedXCommerce\public\Openedx_Commerce_Public; | ||
use OpenedXCommerce\admin\views\Openedx_Commerce_Settings; | ||
use OpenedXCommerce\model\Openedx_Commerce_Enrollment; | ||
|
||
/** | ||
* This class contains the function to register a new custom post type. | ||
|
Oops, something went wrong.