Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Common] Update Experimental Action #64

Merged
merged 5 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ e06d8444216e90f83d6d0842174b236252580b67
f8edfb0bf612dcc942b3e155f3f99ef10361670f
d4e431bcb0f02f246ee3b6f9e2fa8f1071e14e1a
39249d157b937569c5fcfeb95be03c61e9525533
1730069d649d3e5d0d81439cd4e17b27d8ede0c5
7ae28292b9632ce88c9e3e0623a3ec6f0aa54c35
1 change: 1 addition & 0 deletions monorepo-builder.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
3 changes: 2 additions & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ parameters:
checkTooWideReturnTypesInProtectedAndPublicMethods: false
treatPhpDocTypesAsCertain: false
ignoreErrors:
- '#PHPDoc tag .+ #'
- identifier: missingType.generics
- identifier: missingType.iterableValue
- '#PHPDoc tag .+ #'
- '#Unsafe usage of new static\(\)#'
unused_public:
methods: false
properties: false
Expand Down
3 changes: 2 additions & 1 deletion pint.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"no_leading_namespace_whitespace": true,
"not_operator_with_successor_space": false,
"single_blank_line_at_eof": false,
"single_quote": false
"single_quote": false,
"single_line_comment_style": false
}
}
1 change: 1 addition & 0 deletions src/CLI/src/Commands/CommandTraits/CommonInputs.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/CLI/src/Commands/CommandTraits/ConfigurePrompts.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/CLI/src/Commands/Common/CommandArgs.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/CLI/src/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/phpgenesis_helpers.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
2 changes: 0 additions & 2 deletions src/Common/src/Actions/Action.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
/** @experimental */
abstract class Action
{
abstract public function __construct(mixed ...$params);

public static function dispatch(mixed ...$params): static
{
return static::make(...$params)->handle();
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Attributes/Internal.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Composer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/ComposerCommands.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Config/Author.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Config/Autoload.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Config/Composer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Config/Config.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Config/Repository.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Providers/Laravel.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Composer/Scripts.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Config/CommonConfig.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Config/IModuleConfig.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Config/Package.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Config/Packages.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Config/PhpGenesisConfig.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Config/Traits/ConfigUtils.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Container/PhpGenesisContainer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Events/DisposeEvent.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Helpers/DirectoryHelper.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Helpers/IdeHelper.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Helpers/Objectify.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Helpers/helpers.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Laravel/Config/phpgenesis.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Repositories/IModelRepository.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Repositories/IsRepository.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Common/src/Repositories/Repository.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Encore Digital Group - Planning Center PHP SDK
* Copyright (c) 2024. Encore Digital Group
Expand Down
1 change: 1 addition & 0 deletions src/Common/tests/ContainerTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/DevUtilities/src/Rector/Rector.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Http/src/Abort.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Http/src/HttpClient.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/BaseLogger.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/BetaFeatures/Logger.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/BetaFeatures/LoggerBuilder.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/Config/LoggerBetaFeatures.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/Config/LoggerConfig.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/ExceptionLogger.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/ILogger.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/LogLevel.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/Logger.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/Loggers/LaravelLogger.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Logger/src/Loggers/MonoLogger.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/OpenFeature/src/OpenFeature.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
1 change: 1 addition & 0 deletions src/Services/AmazonWebServices/src/Config/AwsConfig.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* Copyright (c) 2024. Encore Digital Group.
* All Right Reserved.
Expand Down