Skip to content

Commit

Permalink
Add line break in README files
Browse files Browse the repository at this point in the history
Added a line break in both README.md and README.ja.md for improved readability. This ensures the code example is more distinctly separated from the text.
  • Loading branch information
koriym committed Jul 7, 2024
1 parent 097721f commit c089dd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ $aspect->bind(
[new WeekendBlocker()]
);
$aspect->weave(__DIR__ . '/src'); // ディレクトリ内でマッチャーに一致するすべてのクラスにアスペクトを織り込みます。

$billing = new RealBillingService();
echo $billing->chargeOrder(); // インターセプターが適用されます。
```
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ $aspect->bind(
[new WeekendBlocker()]
);
$aspect->weave(__DIR__ . '/src'); // Weave the aspects to all classes in the directory that match the matcher.

$billing = new RealBillingService();
echo $billing->chargeOrder(); // Interceptors applied
```
Expand Down

0 comments on commit c089dd6

Please sign in to comment.