<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace Zend\Barcode\Object;

/**
 * Class for generate Planet barcode
 */
class Planet extends Postnet
{

    
/**
     * Coding map
     * - 0 = half bar
     * - 1 = complete bar
     * @var array
     */
    
protected $codingMap = array(
        
=> "00111",
        
=> "11100",
        
=> "11010",
        
=> "11001",
        
=> "10110",
        
=> "10101",
        
=> "10011",
        
=> "01110",
        
=> "01101",
        
=> "01011"
    
);
}