@@ -26,16 +26,18 @@ public function it_links_and_confirms_deployment()
2626 /**
2727 * @test
2828 */
29- public function it_sets_deployment_directory () {
29+ public function it_sets_deployment_directory ()
30+ {
3031 $ atomicDeployment = self ::getDeployment ();
3132 $ atomicDeployment ->setDeploymentDirectory ('abc123 ' );
32- $ this ->assertTrue ( $ atomicDeployment ->getDeploymentDirectory () === 'abc123 ' );
33+ $ this ->assertTrue ($ atomicDeployment ->getDeploymentDirectory () === 'abc123 ' );
3334 }
3435
3536 /**
3637 * @test
3738 */
38- public function it_names_deployment_folder_using_config_directory_naming_git () {
39+ public function it_names_deployment_folder_using_config_directory_naming_git ()
40+ {
3941 $ gitHash = Exec::getGitHash ();
4042 $ atomicDeployment = self ::getDeployment ();
4143 $ atomicDeployment ->createDirectory ();
@@ -45,7 +47,8 @@ public function it_names_deployment_folder_using_config_directory_naming_git() {
4547 /**
4648 * @test
4749 */
48- public function it_names_deployment_folder_using_config_directory_naming_rand () {
50+ public function it_names_deployment_folder_using_config_directory_naming_rand ()
51+ {
4952 $ this ->app ['config ' ]->set ('atomic-deployments.directory-naming ' , 'rand ' );
5053 $ gitHash = Exec::getGitHash ();
5154 $ atomicDeployment = self ::getDeployment ();
@@ -57,7 +60,8 @@ public function it_names_deployment_folder_using_config_directory_naming_rand()
5760 /**
5861 * @test
5962 */
60- public function it_sets_deployment_path () {
63+ public function it_sets_deployment_path ()
64+ {
6165 $ atomicDeployment = self ::getDeployment ();
6266 $ atomicDeployment ->setDeploymentPath ();
6367 $ this ->assertNotEmpty (trim ($ atomicDeployment ->getDeploymentPath ()));
@@ -66,7 +70,8 @@ public function it_sets_deployment_path() {
6670 /**
6771 * @test
6872 */
69- public function it_creates_a_directory () {
73+ public function it_creates_a_directory ()
74+ {
7075 $ atomicDeployment = self ::getDeployment ();
7176 $ atomicDeployment ->createDirectory ();
7277 $ this ->assertTrue ($ this ->fileSystem ->exists ($ atomicDeployment ->getDeploymentPath ()));
@@ -75,10 +80,10 @@ public function it_creates_a_directory() {
7580 /**
7681 * @test
7782 */
78- public function it_updates_model_status () {
83+ public function it_updates_model_status ()
84+ {
7985 $ atomicDeployment = self ::getDeployment ();
8086 $ atomicDeployment ->updateDeploymentStatus (DeploymentStatus::SUCCESS );
81- $ this ->assertTrue ((int )AtomicDeployment::first ()->deployment_status === DeploymentStatus::SUCCESS );
87+ $ this ->assertTrue ((int ) AtomicDeployment::first ()->deployment_status === DeploymentStatus::SUCCESS );
8288 }
83-
8489}
0 commit comments