fix formatting

This commit is contained in:
Antonio Ramirez
2016-12-14 02:50:12 +01:00
parent f3f4b31bb4
commit 3ba01b4674
140 changed files with 512 additions and 523 deletions

View File

@ -2,7 +2,7 @@
use yii\helpers\Html;
/**
/*
* @var \yii\web\View $this
* @var \Da\User\Model\Profile $profile
*/
@ -16,7 +16,7 @@ $this->params['breadcrumbs'][] = $this->title;
<div class="col-sm-6 col-md-4">
<?= Html::img($profile->getAvatarUrl(230), [
'class' => 'img-rounded img-responsive',
'alt' => $profile->user->username,
'alt' => $profile->user->username,
]) ?>
</div>
<div class="col-sm-6 col-md-8">
@ -37,7 +37,7 @@ $this->params['breadcrumbs'][] = $this->title;
<?php if (!empty($profile->public_email)): ?>
<li>
<i class="glyphicon glyphicon-envelope text-muted"></i>
<?= Html::a(Html::encode($profile->public_email), 'mailto:' .
<?= Html::a(Html::encode($profile->public_email), 'mailto:'.
Html::encode($profile->public_email))
?>
</li>