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
[user] | |
name = username | |
email = [email protected] | |
[color] | |
branch = auto | |
diff = auto | |
status = auto | |
[color "branch"] |
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"?> | |
<!-- | |
Use this configuration file as a template to run the tests against any dbms. | |
Procedure: | |
1) Save a copy of this file with a name of your chosing. It doesn't matter | |
where you place it as long as you know where it is. | |
i.e. "mysqlconf.xml" (It needs the ending .xml). | |
2) Edit the file and fill in your settings (database name, type, username, etc.) | |
Just change the "value"s, not the names of the var elements. | |
3) To run the tests against the database type the following from within the |
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 | |
class DirectionEnum extends Enum | |
{ | |
const NORTH = 'NORTH'; | |
const SOUTH = 'SOUTH'; | |
const EAST = 'EAST'; | |
const WEST = 'WEST'; | |
/** | |
* @return boolean |
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"?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
targetNamespace="http://doctrine-project.org/schemas/orm/doctrine-mapping" | |
xmlns:orm="http://doctrine-project.org/schemas/orm/doctrine-mapping" | |
elementFormDefault="qualified"> | |
<xs:annotation> | |
<xs:documentation><![CDATA[ | |
This is the XML Schema for the object/relational |
NewerOlder