| 1 |
<?php |
| 2 |
namespace Photonic_Plugin\Platforms; |
| 3 |
|
| 4 |
require_once PHOTONIC_PATH . '/Components/Photo.php'; |
| 5 |
require_once PHOTONIC_PATH . '/Components/Photo_List.php'; |
| 6 |
require_once PHOTONIC_PATH . '/Components/Single_Photo.php'; |
| 7 |
|
| 8 |
interface Level_One_Module { |
| 9 |
public function build_level_1_objects($response, array $short_code, $module_parameters = [], $options = []): array; |
| 10 |
} |
| 11 |
|