All Questions
1 question
2
votes
2
answers
1k
views
Sublime Text snippet to insert PSR-0 namespace
I'm trying to make a Sublime Text-snippet that inserts a PHP boilerplate class, in the lines of:
<?php
namespace Namespace\Subnamespace;
class TestClass
{
public function __construct()
{
...