This also fix a few bugs that were introduced when migrating to namespace. Some non-namespaces classes were leftover FIX #15
		
			
				
	
	
		
			49 lines
		
	
	
		
			496 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			496 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    [
 | 
						|
        null,
 | 
						|
        '#VALUE!',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '',
 | 
						|
        '#VALUE!',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        'ABC',
 | 
						|
        65,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        123,
 | 
						|
        49,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        true,
 | 
						|
        84,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        'DEF',
 | 
						|
        68,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        'PhpSpreadsheet',
 | 
						|
        80,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        1.5,
 | 
						|
        49,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        'Mark Baker',
 | 
						|
        77,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        'mark baker',
 | 
						|
        109,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '£125.00',
 | 
						|
        163,
 | 
						|
    ],
 | 
						|
];
 |