Skip to content

Commit 3f9dffa

Browse files
committed
init
0 parents  commit 3f9dffa

File tree

195 files changed

+41546
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+41546
-0
lines changed

.github/CONTRIBUTING.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Thank you for wanting to contribute to the project!
2+
================================================
3+
Before you spend time on building something, please share your plans/ideas as an issue. That way we can decide if the idea suits the project.
4+
5+
Please follow this steps when you make a PR:
6+
7+
1. Fork the project ( https://github.com/rappasoft/laravel-boilerplate/fork )
8+
2. Create your feature branch (`git checkout -b my-new-feature`)
9+
3. Commit your changes (`git commit -am 'Add some feature'`)
10+
4. Push to the branch (`git push origin my-new-feature`)
11+
5. Create a new Pull Request

.github/ISSUE_TEMPLATE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Before you create an issue make sure that:
2+
- Your issue is **strictly related to the boilerplate** itself. Questions about Laravel in general belongs to the [laravel](http://laravel.io/forum) or [laracasts](https://laracasts.com/discuss/) forums.
3+
- You have read the [documentation](http://laravel-boilerplate.com) thoroughly.
4+
- You have searched for a similar issues among all the former issues (even closed ones).
5+
- You have tried to replicate the issue with a clean install of the project.
6+
7+
# Be explicit
8+
Try to be as explicit as you can when you ask anything.
9+
10+
# What version?
11+
Please when it's necessary, provide the version of your copy of the boilerplate. You can find the version number in the original README.md.

.github/PULL_REQUEST_TEMPLATE.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Is this a fix, enhancement or language pack?
2+
Describe what the PR does, try to first give a brief explanation and then a more in depth explanation if you think that is necessary.

.github/workflows/main.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI for PHP Design Pattern
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- development
8+
9+
jobs:
10+
design-pattern-tests:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- name: Install Dependencies
15+
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
16+
- name: Execute Tests
17+
run: vendor/bin/phpunit

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?php
2+
3+
namespace DesignPatterns\Behavioral\ChainOfResponsibilities;
4+
5+
/**
6+
* Class Bag.
7+
*/
8+
class Bag
9+
{
10+
/**
11+
* @var Turnips
12+
*/
13+
protected Turnips $turnips;
14+
15+
/**
16+
* @var int
17+
*/
18+
protected int $bells = 0;
19+
20+
/**
21+
* @param Turnips $turnips
22+
*/
23+
public function setTurnips(Turnips $turnips)
24+
{
25+
$this->turnips = $turnips;
26+
}
27+
28+
/**
29+
* @param int $bells
30+
*/
31+
public function setBells(int $bells)
32+
{
33+
$this->bells = $bells;
34+
}
35+
36+
/**
37+
* @return Turnips
38+
*/
39+
public function getTurnips(): Turnips
40+
{
41+
return $this->turnips;
42+
}
43+
44+
/**
45+
* @return int
46+
*/
47+
public function getBells(): int
48+
{
49+
return $this->bells;
50+
}
51+
}
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
namespace DesignPatterns\Behavioral\ChainOfResponsibilities;
4+
5+
/**
6+
* Abstract Handler.
7+
*/
8+
abstract class Handler
9+
{
10+
/**
11+
* @var Handler
12+
*/
13+
protected $upper;
14+
15+
/**
16+
* @param Handler $upper
17+
*/
18+
public function setUpperHandler(Handler $upper)
19+
{
20+
$this->upper = $upper;
21+
}
22+
23+
/**
24+
* @param Bag $bag
25+
*/
26+
abstract public function sellTurnips(Bag $bag): Bag;
27+
}

0 commit comments

Comments
 (0)