Skip to content

Commit

Permalink
v0.1.7 replace to uppercase namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
reindertvetter committed Feb 13, 2017
1 parent b7063c4 commit a23e034
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cron/UpdateStatus.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
* @since File available since Release v0.1.0
*/

namespace MyParcelNL\magento\Cron;
namespace MyParcelNL\Magento\Cron;

use Magento\Framework\App\ObjectManager;
use Magento\Sales\Model\Order;
use MyParcelNL\magento\Model\Sales\MagentoOrderCollection;
use MyParcelNL\Magento\Model\Sales\MagentoOrderCollection;
use MyParcelNL\Magento\Model\Sales\MyParcelTrackTrace;

class UpdateStatus
Expand Down
4 changes: 2 additions & 2 deletions Model/Sales/MagentoOrderCollection.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @since File available since Release v0.1.0
*/

namespace MyParcelNL\magento\Model\Sales;
namespace MyParcelNL\Magento\Model\Sales;

use Magento\Framework\App\ObjectManager;
use Magento\Framework\Exception\LocalizedException;
Expand All @@ -22,7 +22,7 @@

/**
* Class MagentoOrderCollection
* @package MyParcelNL\magento\Model\Sales
* @package MyParcelNL\Magento\Model\Sales
*/
class MagentoOrderCollection
{
Expand Down
2 changes: 1 addition & 1 deletion Observer/NewShipment.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Magento\Framework\Event\Observer;
use Magento\Framework\Event\ObserverInterface;
use Magento\Sales\Model\Order\Shipment;
use MyParcelNL\magento\Model\Sales\MagentoOrderCollection;
use MyParcelNL\Magento\Model\Sales\MagentoOrderCollection;
use MyParcelNL\Magento\Model\Sales\MyParcelTrackTrace;

class NewShipment implements ObserverInterface
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "myparcelnl/magento",
"description": "A Magento 2 module that creates MyParcel labels",
"type": "magento2-module",
"version": "v0.1.6",
"version": "v0.1.7",
"homepage": "https://www.myparcel.nl",
"tags": ["MyParcel", "My Parcel", "Post NL", "PostNL", "Magento 2"],
"license": "CC BY-NC-ND 3.0 NL",
Expand Down
2 changes: 1 addition & 1 deletion etc/crontab.xml
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd">
<group id="default"> <!-- Doesn't need to be unique -->
<job name="myparcel_update_status" instance="MyParcelNL\magento\Cron\UpdateStatus" method="execute">
<job name="myparcel_update_status" instance="MyParcelNL\Magento\Cron\UpdateStatus" method="execute">
<schedule>*/15 * * * *</schedule>
</job>
</group>
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="MyParcelNL_Magento" setup_version="0.1.6">
<module name="MyParcelNL_Magento" setup_version="0.1.7">
<sequence>
<module name="Magento_Sales"/>
</sequence>
Expand Down
Empty file modified view/adminhtml/web/js/mass-action.js
100644 → 100755
Empty file.

0 comments on commit a23e034

Please sign in to comment.