Skip to content

Commit 865761c

Browse files
Bump coverallsapp/github-action from 1.1.3 to 2.2.3 (#104)
* Bump coverallsapp/github-action from 1.1.3 to 2.2.3 Bumps [coverallsapp/github-action](https://github.com/coverallsapp/github-action) from 1.1.3 to 2.2.3. - [Release notes](https://github.com/coverallsapp/github-action/releases) - [Upgrade guide](https://github.com/coverallsapp/github-action/blob/main/UPGRADE.md) - [Commits](coverallsapp/github-action@1.1.3...v2.2.3) --- updated-dependencies: - dependency-name: coverallsapp/github-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Apply fixes from StyleCI --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: StyleCI Bot <[email protected]>
1 parent 4ba8a76 commit 865761c

File tree

6 files changed

+4
-3
lines changed

6 files changed

+4
-3
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
if: matrix.php-version == '8.1'
5757

5858
- name: Coveralls
59-
uses: coverallsapp/github-action@1.1.3
59+
uses: coverallsapp/github-action@v2.2.3
6060
with:
6161
github-token: ${{ secrets.GITHUB_TOKEN }}
6262
path-to-lcov: build/lcov.info

examples/Connection/http_connect.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
$response = $epp_client->request($frame);
4040

4141
while ($response->success() && $response->code() !== 1300) { // 1300 = result successful, no more mesages
42-
4342
echo 'Epp Poll message ID: ';
4443
echo $response->queueId();
4544
echo "\n";

src/AfriCC/EPP/AbstractClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* @see ClientInterface
1717
*
1818
* As this class is abstract and relies on subclass implementation details it's untestable
19+
*
1920
* @codeCoverageIgnore
2021
*/
2122
abstract class AbstractClient implements ClientInterface

src/AfriCC/EPP/Client.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* @see http://tools.ietf.org/html/rfc5734
2121
*
2222
* As this class deals directly with sockets it's untestable
23+
*
2324
* @codeCoverageIgnore
2425
*/
2526
class Client extends AbstractClient implements ClientInterface

src/AfriCC/EPP/DOM/DOMTools.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ public static function nodeToArray(
7373

7474
if (!$ignore_attributes && !in_array($each->localName, $ignoreAttributeKeys) && $each->hasAttributes()) {
7575
foreach ($each->attributes as $attr) {
76-
7776
// single attribute with empty node, use the attr-value directly
7877
if ($each->localName === 'status' || ($each->attributes->length === 1 && $each->nodeValue === '')) {
7978
$current = $attr->nodeValue;

src/AfriCC/EPP/HTTPClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* @see http://tools.ietf.org/html/rfc5734
1111
*
1212
* As this class deals directly with cURL it's untestable
13+
*
1314
* @codeCoverageIgnore
1415
*/
1516
class HTTPClient extends AbstractClient implements ClientInterface

0 commit comments

Comments
 (0)