Skip to content

Commit

Permalink
first example push
Browse files Browse the repository at this point in the history
  • Loading branch information
Nano1237 committed Dec 12, 2018
1 parent 3fe714c commit 9b07e85
Show file tree
Hide file tree
Showing 34 changed files with 5,023 additions and 699 deletions.
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@
/typo3temp/
.idea/
.Build/
vendor/
vendor/
Resources/Public/JavaScript/build.js
50 changes: 0 additions & 50 deletions .travis.yml

This file was deleted.

76 changes: 0 additions & 76 deletions CODE_OF_CONDUCT.md

This file was deleted.

17 changes: 0 additions & 17 deletions CONTRIBUTING.md

This file was deleted.

14 changes: 14 additions & 0 deletions Classes/Controller/ProductController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace iizunats\IizunaExample\Controller;

class ProductController {

public function listAction () {
}


public function pageAction () {
$this->listAction();
}
}
98 changes: 0 additions & 98 deletions Classes/Decoder/UrlDecoder.php

This file was deleted.

7 changes: 7 additions & 0 deletions Classes/Domain/Model/Product.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

namespace iizunats\IizunaExample\Domain\Model;

class Product {

}
7 changes: 7 additions & 0 deletions Classes/Domain/Repository/ProductRepository.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

namespace iizunats\IizunaExample\Domain\Repository;

class ProductRepository {

}
Loading

0 comments on commit 9b07e85

Please sign in to comment.