-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
seperate file upload logic from rest api handler #2766
- Loading branch information
Josh Pollock
committed
Oct 25, 2018
1 parent
f371307
commit 3aba811
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
|
||
namespace calderawp\calderaforms\cf2\Fields\Handlers; | ||
|
||
|
||
class Cf1FileUploader | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
|
||
namespace calderawp\calderaforms\cf2\Fields\Handlers; | ||
|
||
|
||
class UploaderContract | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace calderawp\calderaforms\Tests\IntegrationFields\Handlers; | ||
|
||
use calderawp\calderaforms\cf2\Fields\Handlers\FileUpload; | ||
|
||
class FileUploadTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
|
||
namespace calderawp\calderaforms\Tests\Util\Mocks; | ||
|
||
|
||
class MockUploader | ||
{ | ||
|
||
} |