Skip to content

Commit 44bdf25

Browse files
committed
Code polish
1 parent 2f020a5 commit 44bdf25

4 files changed

Lines changed: 4572 additions & 118 deletions

File tree

.gitignore

Lines changed: 7 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,16 @@
1-
# Custom added rules
2-
/bin/
1+
# IDE
2+
.idea
33

4-
# Created by https://www.toptal.com/developers/gitignore/api/composer,phpunit,phpstorm+all
5-
# Edit at https://www.toptal.com/developers/gitignore?templates=composer,phpunit,phpstorm+all
6-
7-
### Composer ###
8-
composer.phar
4+
# Composer
95
/vendor/
106

11-
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
12-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
13-
# composer.lock
14-
15-
### PhpStorm+all ###
16-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
17-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
18-
19-
## Samples ##
7+
# Custom
208
/samples/OrderCreateCustom.php
219

22-
# User-specific stuff
23-
.idea/**/workspace.xml
24-
.idea/**/tasks.xml
25-
.idea/**/usage.statistics.xml
26-
.idea/**/dictionaries
27-
.idea/**/shelf
28-
29-
# AWS User-specific
30-
.idea/**/aws.xml
31-
32-
# Generated files
33-
.idea/**/contentModel.xml
34-
35-
# Sensitive or high-churn files
36-
.idea/**/dataSources/
37-
.idea/**/dataSources.ids
38-
.idea/**/dataSources.local.xml
39-
.idea/**/sqlDataSources.xml
40-
.idea/**/dynamic.xml
41-
.idea/**/uiDesigner.xml
42-
.idea/**/dbnavigator.xml
43-
44-
# Gradle
45-
.idea/**/gradle.xml
46-
.idea/**/libraries
47-
48-
# Gradle and Maven with auto-import
49-
# When using Gradle or Maven with auto-import, you should exclude module files,
50-
# since they will be recreated, and may cause churn. Uncomment if using
51-
# auto-import.
52-
# .idea/artifacts
53-
# .idea/compiler.xml
54-
# .idea/jarRepositories.xml
55-
# .idea/modules.xml
56-
# .idea/*.iml
57-
# .idea/modules
58-
# *.iml
59-
# *.ipr
60-
61-
# CMake
62-
cmake-build-*/
63-
64-
# Mongo Explorer plugin
65-
.idea/**/mongoSettings.xml
66-
67-
# File-based project format
68-
*.iws
69-
70-
# IntelliJ
71-
out/
72-
73-
# mpeltonen/sbt-idea plugin
74-
.idea_modules/
75-
76-
# JIRA plugin
77-
atlassian-ide-plugin.xml
78-
79-
# Cursive Clojure plugin
80-
.idea/replstate.xml
81-
82-
# SonarLint plugin
83-
.idea/sonarlint/
84-
85-
# Crashlytics plugin (for Android Studio and IntelliJ)
86-
com_crashlytics_export_strings.xml
87-
crashlytics.properties
88-
crashlytics-build.properties
89-
fabric.properties
90-
91-
# Editor-based Rest Client
92-
.idea/httpRequests
93-
94-
# Android studio 3.1+ serialized cache file
95-
.idea/caches/build_file_checksums.ser
96-
97-
### PhpStorm+all Patch ###
98-
# Ignore everything but code style settings and run configurations
99-
# that are supposed to be shared within teams.
100-
101-
.idea/*
102-
103-
!.idea/codeStyles
104-
!.idea/runConfigurations
105-
106-
### PHPUnit ###
107-
# Covers PHPUnit
108-
# Reference: https://phpunit.de/
109-
110-
# Generated files
10+
# PHPUnit
11111
.phpunit.result.cache
11212
.phpunit.cache
11313

114-
# PHPUnit
115-
/app/phpunit.xml
116-
/phpunit.xml
117-
118-
# Build data
14+
# Build
11915
/build/
120-
121-
# End of https://www.toptal.com/developers/gitignore/api/composer,phpunit,phpstorm+all
16+
/bin/

Tests/Unit/Util/ExchangeTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ private function createExchange(): Exchange
1717
}
1818

1919
/**
20-
* Kleine helper om private $headers in Exchange te zetten,
21-
* zodat getRequestHeaders() geen getallheaders() hoeft te doen.
22-
*
2320
* @param Exchange $exchange
2421
* @param array $headers
2522
* @return void

Tests/Unit/Util/PayCacheTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77

88
final class PayCacheTest extends TestCase
99
{
10-
/**
11-
* Helper om private/protected methodes aan te roepen.
12-
*/
1310
private function invokeMethod(object $object, string $method, array $args = []): mixed
1411
{
1512
$refClass = new \ReflectionClass($object);

0 commit comments

Comments
 (0)