Skip to content

Commit 9bdc5e8

Browse files
committed
site update
1 parent 52d4376 commit 9bdc5e8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+341
-135
lines changed

atom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/atom.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
9+
<entry>
10+
<title type="html"><![CDATA[How to Upgrade deprecated PHPUnit withConsecutive()]]></title>
11+
<link href="https://www.phpes.org/blog/2024/12/23/how-to-upgrade-deprecated-phpunit-withconsecutive/"/>
12+
<updated>2024-12-23T00:00:00+00:00</updated>
13+
<id>https://www.phpes.org/blog/2024/12/23/how-to-upgrade-deprecated-phpunit-withconsecutive/</id>
14+
<content type="html"><![CDATA[<p>Dica para uma dúvida muito comum quando precisa atualizar a versão do PHPUnit 9.6 para 10+, uma vez que o <code>withConsecutive</code> foi depreciado.</p>
15+
16+
<p><a href="https://tomasvotruba.com/blog/how-to-upgrade-deprecated-phpunit-with-consecutive">https://tomasvotruba.com/blog/how-to-upgrade-deprecated-phpunit-with-consecutive</a></p>
17+
]]></content>
18+
</entry>
919
<entry>
1020
<title type="html"><![CDATA[PHP 8.4 released]]></title>
1121
<link href="https://www.phpes.org/blog/2024/11/21/php-84-released/"/>
@@ -15,16 +25,6 @@
1525
1626
<p>Português: <a href="https://www.php.net/releases/8.4/pt_BR.php">https://www.php.net/releases/8.4/pt_BR.php</a>
1727
Inglês: <a href="https://www.php.net/releases/8.4/en.php">https://www.php.net/releases/8.4/en.php</a></p>
18-
]]></content>
19-
</entry>
20-
<entry>
21-
<title type="html"><![CDATA[How to Upgrade deprecated PHPUnit withConsecutive()]]></title>
22-
<link href="https://www.phpes.org/blog/2024/11/21/how-to-upgrade-deprecated-phpunit-withconsecutive/"/>
23-
<updated>2024-11-21T00:00:00+00:00</updated>
24-
<id>https://www.phpes.org/blog/2024/11/21/how-to-upgrade-deprecated-phpunit-withconsecutive/</id>
25-
<content type="html"><![CDATA[<p>Dica para uma dúvida muito comum quando precisa atualizar a versão do PHPUnit 9.6 para 10+, uma vez que o <code>withConsecutive</code> foi depreciado.</p>
26-
27-
<p><a href="https://tomasvotruba.com/blog/how-to-upgrade-deprecated-phpunit-with-consecutive">https://tomasvotruba.com/blog/how-to-upgrade-deprecated-phpunit-with-consecutive</a></p>
2828
]]></content>
2929
</entry>
3030
<entry>

blog/2024/11/14/whats-new-in-php-84-video/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h2>What&#039;s new in PHP 8.4 [video] <small>post</small></h2>
7979
</a>
8080
</li>
8181
<li>
82-
<a href="https://www.phpes.org/blog/2024/11/21/how-to-upgrade-deprecated-phpunit-withconsecutive/" title="How to Upgrade deprecated PHPUnit withConsecutive()">
82+
<a href="https://www.phpes.org/blog/2024/11/21/php-84-released/" title="PHP 8.4 released">
8383
Próximo
8484
&raquo;
8585
</a>

blog/2024/11/21/php-84-released/index.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,18 @@ <h2>PHP 8.4 released <small>post</small></h2>
7676
<nav class="article">
7777
<ul class="pager">
7878
<li>
79-
<a href="https://www.phpes.org/blog/2024/11/21/how-to-upgrade-deprecated-phpunit-withconsecutive/" title="How to Upgrade deprecated PHPUnit withConsecutive()">
79+
<a href="https://www.phpes.org/blog/2024/11/14/whats-new-in-php-84-video/" title="What&#039;s new in PHP 8.4 [video]">
8080
&laquo;
8181
Anterior
8282
</a>
8383
</li>
84-
</ul>
84+
<li>
85+
<a href="https://www.phpes.org/blog/2024/12/23/how-to-upgrade-deprecated-phpunit-withconsecutive/" title="How to Upgrade deprecated PHPUnit withConsecutive()">
86+
Próximo
87+
&raquo;
88+
</a>
89+
</li>
90+
</ul>
8591
</nav>
8692

8793

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>How to Upgrade deprecated PHPUnit withConsecutive() &mdash; PHP-ES &mdash; PHP Espírito Santo</title>
5+
<meta charset="utf-8">
6+
<meta name="theme-color" content="#ffffff">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<meta name="description" content="PHP-ES - Grupo de PHP do Espírito Santo">
9+
<meta name="keywords" content="php, phpes, grupo, espirito santo, php7, dicas, tutoriais, notícias, blog">
10+
11+
<meta name="robots" content="index, follow">
12+
13+
<meta property="og:type" content="article" />
14+
<meta property="og:url" content="https://www.phpes.org/blog/2024/12/23/how-to-upgrade-deprecated-phpunit-withconsecutive/" />
15+
<meta property="og:title" content="How to Upgrade deprecated PHPUnit withConsecutive()" />
16+
<meta property="og:description" content="PHP Espírito Santo" />
17+
<meta property="og:image" content="https://www.phpes.org/images/og-image.png" />
18+
19+
<link rel="stylesheet" href="https://www.phpes.org/css/bootstrap.css">
20+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.2.0/styles/default.min.css">
21+
<link rel="stylesheet" href="https://highlightjs.org/static/demo/styles/agate.css">
22+
<link href="https://www.phpes.org/css/style.css" rel="stylesheet" type="text/css" />
23+
24+
<meta name="mobile-web-app-capable" content="yes">
25+
<meta name="apple-mobile-web-app-capable" content="yes">
26+
<link rel="shortcut icon" href="https://www.phpes.org/images/elephant-mini.png">
27+
28+
<link rel="stylesheet" href="https://www.phpes.org/components/highlightjs/styles/github.css" />
29+
<link rel="alternate" type="application/atom+xml" href="https://www.phpes.org/atom.xml" title="PHP-ES activity feed" />
30+
31+
</head>
32+
<body>
33+
<header>
34+
<div class="navbar navbar-default navbar-fixed-top">
35+
<div class="container">
36+
<div class="navbar-header">
37+
<a class="brand" href="https://www.phpes.org/">PHP-ES</a>
38+
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
39+
<span class="icon-bar"></span>
40+
<span class="icon-bar"></span>
41+
<span class="icon-bar"></span>
42+
</button>
43+
</div>
44+
<div id="navbar-main" class="navbar-collapse collapse">
45+
<ul class="nav navbar-nav">
46+
<li><a href="https://www.phpes.org/blog">Arquivo</a></li>
47+
<li><a href="https://www.phpes.org/blog/tags">Tags</a></li>
48+
<li><a href="https://www.phpes.org/about">Sobre</a></li>
49+
</ul>
50+
</div>
51+
</div>
52+
</div>
53+
</header>
54+
<div class="container">
55+
<div class="col-md-8">
56+
<article class="post">
57+
<header>
58+
<h2>How to Upgrade deprecated PHPUnit withConsecutive() <small>post</small></h2>
59+
<p class="author">
60+
Por <a href="https://github.com/rogeriolino">Rogério Lino</a>
61+
</p>
62+
</header>
63+
<div>
64+
<p>Dica para uma dúvida muito comum quando precisa atualizar a versão do PHPUnit 9.6 para 10+, uma vez que o <code>withConsecutive</code> foi depreciado.</p>
65+
66+
<p><a href="https://tomasvotruba.com/blog/how-to-upgrade-deprecated-phpunit-with-consecutive">https://tomasvotruba.com/blog/how-to-upgrade-deprecated-phpunit-with-consecutive</a></p>
67+
68+
</div>
69+
<footer>
70+
<p class="tags">
71+
Tags:
72+
<a href="https://www.phpes.org/blog/tags/php">php</a> <a href="https://www.phpes.org/blog/tags/phpunit">phpunit</a> </p>
73+
</footer>
74+
</article>
75+
<nav class="article">
76+
<ul class="pager">
77+
<li>
78+
<a href="https://www.phpes.org/blog/2024/11/21/php-84-released/" title="PHP 8.4 released">
79+
&laquo;
80+
Anterior
81+
</a>
82+
</li>
83+
</ul>
84+
</nav>
85+
86+
87+
<div id="disqus_thread"></div>
88+
<script>
89+
var disqus_shortname = 'phpes';
90+
var disqus_config = function () {
91+
this.page.url = "https://www.phpes.org/blog/2024/12/23/how-to-upgrade-deprecated-phpunit-withconsecutive/";
92+
};
93+
(function() { // DON'T EDIT BELOW THIS LINE
94+
var d = document, s = d.createElement('script');
95+
96+
s.src = '//' + disqus_shortname + '.disqus.com/embed.js';
97+
98+
s.setAttribute('data-timestamp', +new Date());
99+
(d.head || d.body).appendChild(s);
100+
})();
101+
</script>
102+
103+
</div>
104+
<div class="col-md-4">
105+
<div class="feature">
106+
<article>
107+
<header>
108+
<h3>Comunidades</h3>
109+
</header>
110+
<div>
111+
<ul>
112+
<li>
113+
<a href="https://phpcomrapadura.org/">
114+
PHP CE
115+
</a>
116+
</li>
117+
<li>
118+
<a href="https://phpdf.org.br/">
119+
PHP DF
120+
</a>
121+
</li>
122+
<li>
123+
<a href="https://phpeste.net">
124+
PHP MA
125+
</a>
126+
</li>
127+
<li>
128+
<a href="https://phpmg.com/">
129+
PHP MG
130+
</a>
131+
</li>
132+
<li>
133+
<a href="https://twitter.com/phpms">
134+
PHP MS
135+
</a>
136+
</li>
137+
<li>
138+
<a href="http://php-pb.net/">
139+
PHP PB
140+
</a>
141+
</li>
142+
<li>
143+
<a href="https://www.phppe.net/">
144+
PHP PE
145+
</a>
146+
</li>
147+
<li>
148+
<a href="https://phppr.org/">
149+
PHP PR
150+
</a>
151+
</li>
152+
<li>
153+
<a href="https://php.rio/">
154+
PHP Rio
155+
</a>
156+
</li>
157+
<li>
158+
<a href="https://www.phprs.com.br/">
159+
PHP RS
160+
</a>
161+
</li>
162+
<li>
163+
<a href="https://phpsp.org.br/">
164+
PHP SP
165+
</a>
166+
</li>
167+
<li>
168+
<a href="https://www.phpsc.com.br/">
169+
PHP SC
170+
</a>
171+
</li>
172+
</ul>
173+
</div>
174+
</article>
175+
</div>
176+
</div>
177+
</div>
178+
<footer class="container">
179+
&copy; 2024 PHP-ES - Grupo de PHP do Espírito Santo
180+
</footer>
181+
182+
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
183+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
184+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.2.0/highlight.min.js"></script>
185+
<script>hljs.initHighlightingOnLoad();</script>
186+
187+
<script>
188+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
189+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
190+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
191+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
192+
193+
ga('create', 'UA-75721006-1', 'auto');
194+
ga('send', 'pageview');
195+
196+
</script>
197+
198+
</body>
199+
</html>

blog/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ <h2>Arquivo</h2>
6060
<h3>Dezembro 2024</h3>
6161
<ul>
6262
<li>
63-
<a href="https://www.phpes.org/blog/2024/11/21/php-84-released/">PHP 8.4 released</a>
63+
<a href="https://www.phpes.org/blog/2024/12/23/how-to-upgrade-deprecated-phpunit-withconsecutive/">How to Upgrade deprecated PHPUnit withConsecutive()</a>
6464
</li>
6565
<li>
66-
<a href="https://www.phpes.org/blog/2024/11/21/how-to-upgrade-deprecated-phpunit-withconsecutive/">How to Upgrade deprecated PHPUnit withConsecutive()</a>
66+
<a href="https://www.phpes.org/blog/2024/11/21/php-84-released/">PHP 8.4 released</a>
6767
</li>
6868
<li>
6969
<a href="https://www.phpes.org/blog/2024/11/14/whats-new-in-php-84-video/">What&#039;s new in PHP 8.4 [video]</a>

blog/tags/500million.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/500million.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/analytics.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/analytics.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/aprilfools.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/aprilfools.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/avconv.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/avconv.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/awesome.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/awesome.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/benckmark.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/benckmark.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/blog.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/blog.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/bolt.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/bolt.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/cms.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/cms.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/components.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/components.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/conferencia.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/conferencia.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/console.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/console.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

blog/tags/cron.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<title><![CDATA[PHP-ES]]></title>
44
<link href="https://www.phpes.org/blog/tags/cron.xml" rel="self"/>
55
<link href="https://www.phpes.org/"/>
6-
<updated>2024-12-23T21:13:31+00:00</updated>
6+
<updated>2024-12-23T21:15:13+00:00</updated>
77
<id>https://www.phpes.org/</id>
88
<generator uri="http://sculpin.io/">Sculpin</generator>
99
<entry>

0 commit comments

Comments
 (0)