This simplify code, increase readability and improve the function signature for API users.
		
			
				
	
	
		
			25 lines
		
	
	
		
			262 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			262 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    [
 | 
						|
        null,
 | 
						|
        123456.789,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        '123456.789',
 | 
						|
        '123456.789',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        'Mark Baker',
 | 
						|
        'Mark Baker',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        null,
 | 
						|
        null,
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        null,
 | 
						|
        true,
 | 
						|
    ],
 | 
						|
];
 |