Skip to content

Commit ced1094

Browse files
committed
- added comments and sprint conflict fix
1 parent ee7dd09 commit ced1094

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

app/Core/Application.php

+10-1
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,18 @@ class Application extends Container
4040
*/
4141
protected $deferredServices = [];
4242

43+
/**
44+
* Array to store laravel service providers
45+
*
46+
* @var array
47+
*/
4348
protected $serviceProviders = [];
4449

50+
/**
51+
* Array to store already loaded providers
52+
*
53+
* @var array
54+
*/
4555
protected $loadedProviders = [];
4656

4757
/**
@@ -51,7 +61,6 @@ class Application extends Container
5161
*/
5262
protected $booted = false;
5363

54-
5564
/**
5665
* Constructor method for the class.
5766
*

app/Domain/Sprints/Templates/sprintdialog.tpl.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@
2727
<?php
2828
if(isset($currentSprint)) {
2929
if($currentSprint->projectId == $project['id']) {
30-
echo "selected";
31-
}else if( session("currentProject") == $project['id']){
30+
echo "selected";
31+
}
32+
}elseif( session("currentProject") == $project['id']){
3233
echo "selected";
3334
}
3435
?>

0 commit comments

Comments
 (0)