Skip to content

Commit d680861

Browse files
committed
Merge branch 'master' into DropWorkflowBuilder
# Conflicts: # src/Persistence/Base64PhpWorkflowSerializer.php # src/Persistence/PhpWorkflowSerializer.php # src/Persistence/WorkflowSerializerInterface.php # src/Process/Process.php # src/Process/WorkflowAwareInterface.php # src/Workflow/Activity/AbstractTask.php # src/Workflow/Element/FlowObject.php # src/Workflow/Element/FlowObjectInterface.php # src/Workflow/Operation/OperationRunnerInterface.php # src/Workflow/ProcessDefinition.php # src/Workflow/WorkflowRepositoryInterface.php # tests/Workflow/WorkflowRepository.php
2 parents 8de71e4 + 9bf4e0f commit d680861

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

src/Definition/ProcessDefinitionRepository.php

+13
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
<?php
2+
/*
3+
* Copyright (c) Atsuhiro Kubo <[email protected]> and contributors,
4+
* All rights reserved.
5+
*
6+
* This file is part of Workflower.
7+
*
8+
* This program and the accompanying materials are made available under
9+
* the terms of the BSD 2-Clause License which accompanies this
10+
* distribution, and is available at http://opensource.org/licenses/BSD-2-Clause
11+
*/
212

313
namespace PHPMentors\Workflower\Definition;
414

515
use PHPMentors\Workflower\Workflow\ProcessDefinitionInterface;
616
use PHPMentors\Workflower\Workflow\ProcessDefinitionRepositoryInterface;
717

18+
/**
19+
* @since Class available since Release 2.0.0
20+
*/
821
class ProcessDefinitionRepository implements ProcessDefinitionRepositoryInterface
922
{
1023
/**

src/Workflow/ProcessDefinitionRepositoryInterface.php

+13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
<?php
2+
/*
3+
* Copyright (c) Atsuhiro Kubo <[email protected]> and contributors,
4+
* All rights reserved.
5+
*
6+
* This file is part of Workflower.
7+
*
8+
* This program and the accompanying materials are made available under
9+
* the terms of the BSD 2-Clause License which accompanies this
10+
* distribution, and is available at http://opensource.org/licenses/BSD-2-Clause
11+
*/
212

313
namespace PHPMentors\Workflower\Workflow;
414

15+
/**
16+
* @since Class available since Release 2.0.0
17+
*/
518
interface ProcessDefinitionRepositoryInterface
619
{
720
/**

tests/Workflow/WorkflowTest.php tests/Workflow/ProcessInstanceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use PHPMentors\Workflower\Workflow\Provider\DataProviderInterface;
2121
use PHPUnit\Framework\TestCase;
2222

23-
class WorkflowTest extends TestCase
23+
class ProcessInstanceTest extends TestCase
2424
{
2525
/**
2626
* @var WorkflowRepositoryInterface

0 commit comments

Comments
 (0)