Skip to content

Commit

Permalink
Create a Magento controller
Browse files Browse the repository at this point in the history
  • Loading branch information
markshust committed Sep 22, 2023
1 parent a1bb65c commit 090a104
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Controller/Index/Index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

declare(strict_types=1);

namespace Macademy\Jumpstart\Controller\Index;

use Magento\Framework\App\Action\HttpGetActionInterface;

class Index implements HttpGetActionInterface
{
public function execute()
{
die('Jumpstart!');
}
}

0 comments on commit 090a104

Please sign in to comment.