Skip to content

Commit 641caf8

Browse files
committed
Add headers
Signed-off-by: Richard McDaniel <[email protected]>
1 parent 26cd61f commit 641caf8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+999
-8
lines changed

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
},
1111
"authors": [
1212
{
13-
"name": "Richard McDaniel",
14-
"email": "[email protected]"
13+
"name": "Serverless Workflow Specification Authors"
1514
}
1615
],
1716
"require-dev": {

composer.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecs.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
use PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis\AssignmentInConditionSniff;
622
use PhpCsFixer\Fixer\FunctionNotation\FunctionTypehintSpaceFixer;
723
use PhpCsFixer\Fixer\FunctionNotation\StaticLambdaFixer;

rector.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
use Rector\Config\RectorConfig;
622
use Rector\Core\ValueObject\PhpVersion;
723
use Rector\Set\ValueObject\LevelSetList;

src/Action.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class Action extends BaseObject

src/ActionDataFilter.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class ActionDataFilter extends BaseObject

src/AuthDef.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class AuthDef extends BaseObject

src/BaseObject.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
use phpDocumentor\Reflection\DocBlockFactory;

src/BasicPropsDef.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class BasicPropsDef extends BaseObject

src/BearerPropsDef.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class BearerPropsDef extends BaseObject

src/Branch.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class Branch extends BaseObject

src/BranchTimeout.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class BranchTimeOut extends BaseObject

src/CallbackState.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class CallbackState extends State

src/CallbackStateTimeout.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class CallbackStateTimeOut extends BaseObject

src/ContinueAsDef.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class ContinueAsDef extends BaseObject

src/CorrelationDef.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class CorrelationDef extends BaseObject

src/CronDef.php

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
declare(strict_types=1);
44

5+
/**
6+
* Copyright 2020-Present The Serverless Workflow Specification Authors
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
521
namespace Serverless\Workflow;
622

723
final class CronDef extends BaseObject

0 commit comments

Comments
 (0)