forked from raulfraile/sublime-symfony2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added all Doctrine annotations columns not yet present
- Loading branch information
chadrien
committed
Dec 12, 2012
1 parent
d12c609
commit b522afd
Showing
8 changed files
with
64 additions
and
0 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
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="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
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="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> |