• This project
    • Loading...
  • Sign in

fe / YOHOBUYPC · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 2
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • YOHOBUYPC
  • library
  • Plugin
  • DataProcess
  • WebChannel
  • Channel
  • Kids.php
  • 频道页处理
    5b054c4c
    by whb
    2015-12-17 14:14:01 +0800  
    Browse Files
Kids.php 412 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php
namespace Plugin\DataProcess\WebChannel\Channel;
class Kids extends AbstractChannel
{
    /**
     * {@inheritDoc}
     * @see \Plugin\DataProcess\WebChannel\Channel\AbstractChannel::format()
     */
    public static function format($resource)
    {
        $data = array();
        foreach($resource as $key => $val)
        {
            
        }
        return $data;
    }

    
}