Skip to content
Snippets Groups Projects
Select Git revision
  • 785de67d0c1069138c9b2690b6cf7bf554cafa4e
  • develop default protected
  • 1.3 protected
  • 1.1
  • 1.2 protected
  • 1.0
  • 13-export-cli-command
  • 1.7.0
  • 1.6.0
  • 1.5.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4.0
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.1.4
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.0.6
27 results

EntryInterface.php

Blame
  • EntryInterface.php 1.09 KiB
    <?php
    declare(strict_types=1);
    
    namespace Firegento\ContentProvisioning\Api\Data;
    
    interface EntryInterface
    {
        const KEY = 'key';
        const IS_MAINTAINED = 'is_maintained';
        const STORES = 'stores';
        const MEDIA_DIRECTORY = 'media_directory';
        const MEDIA_FILES = 'media_files';
    
        /**
         * @return string
         */
        public function getKey();
    
        /**
         * @param string $key
         */
        public function setKey($key);
    
        /**
         * @return bool
         */
        public function isMaintained();
    
        /**
         * @param bool $isMaintained
         */
        public function setIsMaintained($isMaintained);
    
        /**
         * @return array
         */
        public function getStores();
    
        /**
         * @param array $stores
         */
        public function setStores(array $stores);
    
        /**
         * @return string
         */
        public function getMediaDirectory();
    
        /**
         * @param string $path
         */
        public function setMediaDirectory($path);
    
        /**
         * @return array
         */
        public function getMediaFiles();
    
        /**
         * @param array $files
         */
        public function setMediaFiles(array $files);
    }