This file contains 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
<?php | |
/** | |
* @template T | |
*/ | |
class ImmutableVector | |
{ | |
/** | |
* @psalm-var T[] |
This file contains 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
<?php | |
echo 'My PID = ' . posix_getpid() . "\n"; | |
abstract class AbstractWorker | |
{ | |
private $loopNumber = 0; | |
private $shouldRun = true; |
This file contains 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
will@will-laptop:~/src/propel-testcase$ ./vendor/bin/propel model:build --verbose | |
Processing: schema.xml | |
3 tables processed successfully | |
3 tables found in 1 schema files. | |
Generating PHP files... | |
Datamodel: ./schema.xml | |
- Database: foo | |
+ Table: child | |
-> (unchanged) Foo/Base/Child.php | |
-> (unchanged) Foo/Map/ChildTableMap.php |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<database name="foo" | |
namespace="Foo" | |
defaultIdMethod="native" | |
heavyIndexing="true" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:noNamespaceSchemaLocation="http://xsd.propelorm.org/1.6/database.xsd" > | |
<vendor type="mysql"> |