-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from chadrien/master
Additionnal Doctrine annotations column snippets
- Loading branch information
Showing
12 changed files
with
163 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="array") | ||
*/]]></content> | ||
<tabTrigger>sfarraycolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / Array column doc</description> | ||
</snippet> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="bigint") | ||
*/]]></content> | ||
<tabTrigger>sfbigintcolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / BigInt column doc</description> | ||
</snippet> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="boolean") | ||
*/]]></content> | ||
<tabTrigger>sfbooleancolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / Boolean column doc</description> | ||
</snippet> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="date") | ||
*/]]></content> | ||
<tabTrigger>sfdatecolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / Date column doc</description> | ||
</snippet> |
8 changes: 8 additions & 0 deletions
8
Snippets/Doctrine/Annotations/column_datetime.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="datetime") | ||
*/]]></content> | ||
<tabTrigger>sfdatetimecolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / DateTime column doc</description> | ||
</snippet> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="float") | ||
*/]]></content> | ||
<tabTrigger>sffloatcolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / Float column doc</description> | ||
</snippet> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="integer") | ||
*/]]></content> | ||
<tabTrigger>sfintegercolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / Integer column doc</description> | ||
</snippet> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="object") | ||
*/]]></content> | ||
<tabTrigger>sfobjectcolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / Object column doc</description> | ||
</snippet> |
8 changes: 8 additions & 0 deletions
8
Snippets/Doctrine/Annotations/column_smallint.sublime-snippet
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="smallint") | ||
*/]]></content> | ||
<tabTrigger>sfsmallintcolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / SmallInt column doc</description> | ||
</snippet> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<snippet> | ||
<content><![CDATA[/** | ||
* @ORM\Column(type="time") | ||
*/]]></content> | ||
<tabTrigger>sftimecolumn</tabTrigger> | ||
<scope>source.php</scope> | ||
<description>Symfony2 / Model / Time column doc</description> | ||
</snippet> |