Skip to content

Commit

Permalink
Add headers
Browse files Browse the repository at this point in the history
Signed-off-by: Richard McDaniel <richard.lee.mcdaniel@gmail.com>
  • Loading branch information
rmcdaniel committed Nov 25, 2023
1 parent 26cd61f commit 641caf8
Show file tree
Hide file tree
Showing 64 changed files with 999 additions and 8 deletions.
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
},
"authors": [
{
"name": "Richard McDaniel",
"email": "richard.lee.mcdaniel@gmail.com"
"name": "Serverless Workflow Specification Authors"
}
],
"require-dev": {
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions ecs.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

use PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis\AssignmentInConditionSniff;
use PhpCsFixer\Fixer\FunctionNotation\FunctionTypehintSpaceFixer;
use PhpCsFixer\Fixer\FunctionNotation\StaticLambdaFixer;
Expand Down
16 changes: 16 additions & 0 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

use Rector\Config\RectorConfig;
use Rector\Core\ValueObject\PhpVersion;
use Rector\Set\ValueObject\LevelSetList;
Expand Down
16 changes: 16 additions & 0 deletions src/Action.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class Action extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/ActionDataFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class ActionDataFilter extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/AuthDef.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class AuthDef extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/BaseObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

use phpDocumentor\Reflection\DocBlockFactory;
Expand Down
16 changes: 16 additions & 0 deletions src/BasicPropsDef.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class BasicPropsDef extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/BearerPropsDef.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class BearerPropsDef extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/Branch.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class Branch extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/BranchTimeout.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class BranchTimeOut extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/CallbackState.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class CallbackState extends State
Expand Down
16 changes: 16 additions & 0 deletions src/CallbackStateTimeout.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class CallbackStateTimeOut extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/ContinueAsDef.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class ContinueAsDef extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/CorrelationDef.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class CorrelationDef extends BaseObject
Expand Down
16 changes: 16 additions & 0 deletions src/CronDef.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

declare(strict_types=1);

/**
* Copyright 2020-Present The Serverless Workflow Specification Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Serverless\Workflow;

final class CronDef extends BaseObject
Expand Down
Loading

0 comments on commit 641caf8

Please sign in to comment.