Skip to content

Commit 30b1d97

Browse files
committed
bump dev deps
1 parent df28002 commit 30b1d97

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: shivammathur/setup-php@v2
1414
with:
1515
php-version: "8.4"
16-
tools: phpcs:3.11, php-cs-fixer:3.65, phpstan:2.0.4
16+
tools: phpcs:3.11, php-cs-fixer:3.66, phpstan:2.1.0
1717
coverage: none
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* php-cs-fixer configuration file.
55
*
6-
* minimum version: ^3.65
6+
* minimum version: ^3.66
77
*
88
* @see https://cs.symfony.com/doc/config.html
99
*/

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Balint Toth
3+
Copyright (c) 2025 Balint Toth
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

phpdoc.dist.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
PHPDocumentor configuration file.
44
5-
minimum version: ^3.5
5+
minimum version: ^3.6
66
77
@see https://docs.phpdoc.org/guide/references/configuration.html
88
-->

phpstan.dist.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PHPStan configuration file.
22
#
3-
# minimum version: ^2.0.4
3+
# minimum version: ^2.1.0
44
#
55
# @see https://phpstan.org/config-reference
66
parameters:

src/Aoc/AocRunner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ final class AocRunner
7777
*/
7878
public function __construct(array $args)
7979
{
80-
echo 'Advent of Code - batch solution runner, (c) 2024 by TBali' . PHP_EOL . PHP_EOL;
80+
echo 'Advent of Code - batch solution runner, (c) 2025 by TBali' . PHP_EOL . PHP_EOL;
8181
$this->processArgs($args);
8282
$this->isOk = true;
8383
}

src/AocYYYYDayDD.php

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
declare(strict_types=1);
44

5-
namespace TBali\Aoc2024;
5+
namespace TBali\AocYYYY;
66

77
use TBali\Aoc\SolutionBase;
88

99
/**
10-
* AoC 2024 Day 0: CODE SKELETON FOR SOLUTION.
10+
* AoC YYYY Day DD: CODE SKELETON FOR SOLUTION.
1111
*
12-
* @see https://adventofcode.com/2024/day/0
12+
* @see https://adventofcode.com/YYYY/day/DD
1313
*/
14-
final class Aoc2024Day00 extends SolutionBase
14+
final class AocYYYYDayDD extends SolutionBase
1515
{
16-
public const YEAR = 2024;
16+
public const YEAR = 2025;
1717
public const DAY = 0;
1818
public const TITLE = '';
1919
public const SOLUTIONS = [0, 0];
@@ -31,8 +31,6 @@ final class Aoc2024Day00 extends SolutionBase
3131
public function solve(array $input): array
3232
{
3333
// ---------- Parse input
34-
/** @var array<int, int> */
35-
$data = array_map(intval(...), $input);
3634
// ---------- Part 1
3735
$ans1 = 0;
3836
// ---------- Part 2

0 commit comments

Comments
 (0)