File tree Expand file tree Collapse file tree 5 files changed +53
-3
lines changed Expand file tree Collapse file tree 5 files changed +53
-3
lines changed Original file line number Diff line number Diff line change 1919  ],
2020  "autoload" : {
2121    "psr-4" : {
22-       "Markdom\\ HandlerInterface\\ " : " src" 
22+       "Markdom\\ Common\\ " : " src/Common" 
23+       "Markdom\\ DispatcherInterface\\ " : " src/DispatcherInterface" 
24+       "Markdom\\ HandlerInterface\\ " : " src/HandlerInterface" 
2325    }
2426  },
2527  "require" : {
Original file line number Diff line number Diff line change 1+ <?php 
2+ 
3+ namespace  Markdom \Common ;
4+ 
5+ /** 
6+  * Class BlockType 
7+  * 
8+  * @package Markdom\Common 
9+  */ 
10+ final  class  BlockType
11+ {
12+ 
13+ 	const  TYPE_CODE  = 'CODE ' ;
14+ 	const  TYPE_DIVISION  = 'DIVISION ' ;
15+ 	const  TYPE_HEADING  = 'HEADING ' ;
16+ 	const  TYPE_UNORDERED_LIST  = 'UNORDERED_LIST ' ;
17+ 	const  TYPE_ORDERED_LIST  = 'ORDERED_LIST ' ;
18+ 	const  TYPE_LIST_ITEM  = 'LIST_ITEM ' ;
19+ 	const  TYPE_PARAGRAPH  = 'PARAGRAPH ' ;
20+ 	const  TYPE_QUOTE  = 'QUOTE ' ;
21+ 	const  TYPE_HTML  = 'HTML ' ;
22+ 
23+ }
Original file line number Diff line number Diff line change 1+ <?php 
2+ 
3+ namespace  Markdom \Common ;
4+ 
5+ /** 
6+  * Class ContentType 
7+  * 
8+  * @package Markdom\Common 
9+  */ 
10+ final  class  ContentType
11+ {
12+ 
13+ 	const  TYPE_CODE  = 'CODE ' ;
14+ 	const  TYPE_DIVISION  = 'DIVISION ' ;
15+ 	const  TYPE_HEADING  = 'HEADING ' ;
16+ 	const  TYPE_UNORDERED_LIST  = 'UNORDERED_LIST ' ;
17+ 	const  TYPE_ORDERED_LIST  = 'ORDERED_LIST ' ;
18+ 	const  TYPE_LIST_ITEM  = 'LIST_ITEM ' ;
19+ 	const  TYPE_PARAGRAPH  = 'PARAGRAPH ' ;
20+ 	const  TYPE_QUOTE  = 'QUOTE ' ;
21+ 	const  TYPE_HTML  = 'HTML ' ;
22+ 
23+ }
Original file line number Diff line number Diff line change 11<?php 
22
3- namespace  Markdom \HandlerInterface ;
3+ namespace  Markdom \DispatcherInterface ;
4+ 
5+ use  Markdom \HandlerInterface \HandlerInterface ;
46
57/** 
68 * Interface DispatcherInterface 
79 * 
8-  * @package Markdom\HandlerInterface  
10+  * @package Markdom\DispatcherInterface  
911 */ 
1012interface  DispatcherInterface
1113{
File renamed without changes.
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments