This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # This script is used to combine PHP source files together into one big glob. | |
| # I wrote this so I could distribute a single file web application, but develop | |
| # it in a sane fashion. | |
| # Copyright (c) 2010, John M. Hobbs | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without modification, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env php | |
| <?php | |
| error_reporting( E_ERROR | E_PARSE ); | |
| class ToDo { | |
| protected $argv = array(); | |
| public function __construct ( $argv ) { |
NewerOlder